diff options
author | Alexey Dobriyan | 2006-06-06 06:04:39 +0200 |
---|---|---|
committer | David S. Miller | 2006-06-18 06:29:37 +0200 |
commit | 338fcf9886df9ad2873772197a73a57818973316 (patch) | |
tree | 3d58fed24e4c171110788ad479093a9b4ba27133 /net/ipv4 | |
parent | [TCP]: Fix compile warning in tcp_probe.c (diff) | |
download | kernel-qcow2-linux-338fcf9886df9ad2873772197a73a57818973316.tar.gz kernel-qcow2-linux-338fcf9886df9ad2873772197a73a57818973316.tar.xz kernel-qcow2-linux-338fcf9886df9ad2873772197a73a57818973316.zip |
[IPV4] igmp: Fixup struct ip_mc_list::multiaddr type
All users except two expect 32-bit big-endian value. One is of
->multiaddr = ->multiaddr
variety. And last one is "%08lX".
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/igmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index d512239a1473..ab680c851aa2 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c @@ -2361,7 +2361,7 @@ static int igmp_mc_seq_show(struct seq_file *seq, void *v) } seq_printf(seq, - "\t\t\t\t%08lX %5d %d:%08lX\t\t%d\n", + "\t\t\t\t%08X %5d %d:%08lX\t\t%d\n", im->multiaddr, im->users, im->tm_running, im->tm_running ? jiffies_to_clock_t(im->timer.expires-jiffies) : 0, |