diff options
author | Julian Anastasov <ja@ssi.bg> | 2006-11-10 22:57:37 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-11-10 22:57:37 (GMT) |
commit | bb831eb2027c12a740ad4e4ad78f2a0e841ae808 (patch) | |
tree | ad54bd115d60f5ab63e7065b193b59f304e6a27b /net/ipv4/ipvs/ip_vs_proto_tcp.c | |
parent | da413908d5e9ebdd0889a599e80d21d7237021c6 (diff) | |
download | linux-fsl-qoriq-bb831eb2027c12a740ad4e4ad78f2a0e841ae808.tar.xz |
[IPVS]: More endianness fixed.
- make sure port in FTP data is in network order (in fact it was looking
buggy for big endian boxes before Viro's changes)
- htonl -> htons for port
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipvs/ip_vs_proto_tcp.c')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_proto_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipvs/ip_vs_proto_tcp.c b/net/ipv4/ipvs/ip_vs_proto_tcp.c index bfe779e..6ff05c3 100644 --- a/net/ipv4/ipvs/ip_vs_proto_tcp.c +++ b/net/ipv4/ipvs/ip_vs_proto_tcp.c @@ -117,7 +117,7 @@ tcp_fast_csum_update(struct tcphdr *tcph, __be32 oldip, __be32 newip, { tcph->check = ip_vs_check_diff(~oldip, newip, - ip_vs_check_diff(oldport ^ htonl(0xFFFF), + ip_vs_check_diff(oldport ^ htons(0xFFFF), newport, tcph->check)); } |