]> Git Repo - linux.git/commitdiff
[TCP]: Trivial fix to message in tcp_v4_inbound_md5_hash
authorLeigh Brown <[email protected]>
Mon, 18 Dec 2006 01:13:10 +0000 (17:13 -0800)
committerDavid S. Miller <[email protected]>
Mon, 18 Dec 2006 05:59:26 +0000 (21:59 -0800)
The message logged in tcp_v4_inbound_md5_hash when the hash was expected
but not found was reversed.

Signed-off-by: Leigh Brown <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/ipv4/tcp_ipv4.c

index fa814fc506d5920ade5077398743da338b9b1332..bf7a22412bcb9b25c928773322aa96b2754137c3 100644 (file)
@@ -1186,7 +1186,7 @@ done_opts:
                return 0;
 
        if (hash_expected && !hash_location) {
-               LIMIT_NETDEBUG(KERN_INFO "MD5 Hash NOT expected but found "
+               LIMIT_NETDEBUG(KERN_INFO "MD5 Hash expected but NOT found "
                               "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
                               NIPQUAD(iph->saddr), ntohs(th->source),
                               NIPQUAD(iph->daddr), ntohs(th->dest));
This page took 0.053874 seconds and 4 git commands to generate.