diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-28 01:28:28 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-29 01:01:54 (GMT) |
commit | c1d18f9fa09489635a451ee13c1727e1683c2333 (patch) | |
tree | f44abb3c8ac44ec7113c00d2ca86bb2e33488464 /net/ipv4/raw.c | |
parent | 3ca3c68e76686bee058937ade2b96f4de58ee434 (diff) | |
download | linux-c1d18f9fa09489635a451ee13c1727e1683c2333.tar.xz |
[IPV4]: struct ipcm_cookie annotation
->addr is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index 49e5b4b..b430cf2 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c @@ -382,7 +382,7 @@ static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, struct rtable *rt = NULL; int free = 0; __be32 daddr; - u32 saddr; + __be32 saddr; u8 tos; int err; |