diff options
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 507924b640e..257dba66eac 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1227,10 +1227,10 @@ static int tcp_v4_inbound_md5_hash(struct sock *sk, const struct sk_buff *skb)  	if (genhash || memcmp(hash_location, newhash, 16) != 0) {  		if (net_ratelimit()) { -			printk(KERN_INFO "MD5 Hash failed for (%pI4, %d)->(%pI4, %d)%s\n", -			       &iph->saddr, ntohs(th->source), -			       &iph->daddr, ntohs(th->dest), -			       genhash ? " tcp_v4_calc_md5_hash failed" : ""); +			pr_info("MD5 Hash failed for (%pI4, %d)->(%pI4, %d)%s\n", +				&iph->saddr, ntohs(th->source), +				&iph->daddr, ntohs(th->dest), +				genhash ? " tcp_v4_calc_md5_hash failed" : "");  		}  		return 1;  	}  |