aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSolar Designer <solar@openwall.com>2004-12-08 05:37:13 -0800
committerDavid S. Miller <davem@nuts.davemloft.net>2004-12-08 05:37:13 -0800
commit737c994caeb174afd34ec7e10d808eaf6ba18c42 (patch)
tree68f649f066594b05cdaa15000c4d77e4ccce15d7 /net
parent24e5f922a53dc1e53278904bd832ac52432b8e33 (diff)
downloadhistory-737c994caeb174afd34ec7e10d808eaf6ba18c42.tar.gz
[TCP]: Missing KERN_INFO in remotely triggerable printk.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index e8769f30f0c6ba..fd9e0535bad532 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -3028,7 +3028,7 @@ void tcp_parse_options(struct sk_buff *skb, struct tcp_opt *tp, int estab)
tp->snd_wscale = *(__u8 *)ptr;
if(tp->snd_wscale > 14) {
if(net_ratelimit())
- printk("tcp_parse_options: Illegal window "
+ printk(KERN_INFO "tcp_parse_options: Illegal window "
"scaling value %d >14 received.",
tp->snd_wscale);
tp->snd_wscale = 14;