diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-06-05 21:04:39 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-17 21:29:37 -0700 |
commit | 338fcf9886df9ad2873772197a73a57818973316 (patch) | |
tree | 3d58fed24e4c171110788ad479093a9b4ba27133 /net/ipv4/igmp.c | |
parent | 70df2311ee3fc607e7511873d7dade5bd17d593d (diff) | |
download | linux-3.10-338fcf9886df9ad2873772197a73a57818973316.tar.gz linux-3.10-338fcf9886df9ad2873772197a73a57818973316.tar.bz2 linux-3.10-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/igmp.c')
-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 d512239a147..ab680c851aa 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, |