diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 18:32:46 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 18:02:05 -0700 |
commit | dddc93c05d7dba60b44866486502c155e96ab915 (patch) | |
tree | d8126e1d55e6fd9147d9342896ad9c8e89dc2c79 | |
parent | 269bd27e66037a7932cee6d6aa7ef7defd0bfe38 (diff) | |
download | op-kernel-dev-dddc93c05d7dba60b44866486502c155e96ab915.zip op-kernel-dev-dddc93c05d7dba60b44866486502c155e96ab915.tar.gz |
[TCP]: struct tcp_sock .pred_flags is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 9632aa8..0e058a2 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -216,7 +216,7 @@ struct tcp_sock { * Header prediction flags * 0x5?10 << 16 + snd_wnd in net byte order */ - __u32 pred_flags; + __be32 pred_flags; /* * RFC793 variables by their proper names. This means you can |