From: "Paweł Sikora" <pluto@agmk.net>
To: Netfilter Development Mailinglist <netfilter-devel@lists.netfilter.org>
Subject: ip{,6}t_random / fix build warnings.
Date: Sat, 17 Sep 2005 13:30:59 +0200 [thread overview]
Message-ID: <200509171330.59410.pluto@agmk.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 811 bytes --]
Hi,
Attached patch fixes gcc warnings:
(...)
net/ipv4/netfilter/ipt_random.c: In function `ipt_rand_checkentry':
net/ipv4/netfilter/ipt_random.c:55: warning: unsigned int format,
different type arg (arg 3)
net/ipv6/netfilter/ip6t_random.c: In function `ip6t_rand_checkentry':
net/ipv6/netfilter/ip6t_random.c:58: warning: unsigned int format,
different type arg (arg 3)
net/ipv6/netfilter/ip6t_random.c: At top level:
net/ipv6/netfilter/ip6t_random.c:76: warning: initialization
from incompatible pointer type
Regards,
Paweł.
--
The only thing necessary for the triumph of evil
is for good men to do nothing.
- Edmund Burke
[-- Attachment #2: random.diff --]
[-- Type: text/x-diff, Size: 1391 bytes --]
Index: patchlets/random/linux-2.6/net/ipv4/netfilter/ipt_random.c
===================================================================
--- patchlets/random/linux-2.6/net/ipv4/netfilter/ipt_random.c (revision 4262)
+++ patchlets/random/linux-2.6/net/ipv4/netfilter/ipt_random.c (working copy)
@@ -52,7 +52,7 @@
if (matchsize != IPT_ALIGN(sizeof(struct ipt_rand_info))) {
printk("ipt_random: matchsize %u != %u\n", matchsize,
- IPT_ALIGN(sizeof(struct ipt_rand_info)));
+ (unsigned)IPT_ALIGN(sizeof(struct ipt_rand_info)));
return 0;
}
Index: patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c
===================================================================
--- patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c (revision 4262)
+++ patchlets/random/linux-2.6/net/ipv6/netfilter/ip6t_random.c (working copy)
@@ -25,8 +25,7 @@
const struct net_device *out,
const void *matchinfo,
int offset,
- const void *hdr,
- u_int16_t datalen,
+ unsigned int protoff,
int *hotdrop)
{
/* Parameters from userspace */
@@ -55,7 +54,7 @@
if (matchsize != IP6T_ALIGN(sizeof(struct ip6t_rand_info))) {
printk("ip6t_random: matchsize %u != %u\n", matchsize,
- IP6T_ALIGN(sizeof(struct ip6t_rand_info)));
+ (unsigned)IP6T_ALIGN(sizeof(struct ip6t_rand_info)));
return 0;
}
next reply other threads:[~2005-09-17 11:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-17 11:30 Paweł Sikora [this message]
2005-09-18 6:15 ` ip{,6}t_random / fix build warnings David S. Miller
2005-09-19 15:05 ` Harald Welte
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200509171330.59410.pluto@agmk.net \
--to=pluto@agmk.net \
--cc=netfilter-devel@lists.netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.