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 /include/linux | |
parent | 70df2311ee3fc607e7511873d7dade5bd17d593d (diff) | |
download | op-kernel-dev-338fcf9886df9ad2873772197a73a57818973316.zip op-kernel-dev-338fcf9886df9ad2873772197a73a57818973316.tar.gz |
[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 'include/linux')
-rw-r--r-- | include/linux/igmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/igmp.h b/include/linux/igmp.h index 28f4f3b..899c3d4 100644 --- a/include/linux/igmp.h +++ b/include/linux/igmp.h @@ -169,7 +169,7 @@ struct ip_sf_list struct ip_mc_list { struct in_device *interface; - unsigned long multiaddr; + __be32 multiaddr; struct ip_sf_list *sources; struct ip_sf_list *tomb; unsigned int sfmode; |