aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2004-12-19 23:08:50 -0800
committerDavid S. Miller <davem@nuts.davemloft.net>2004-12-19 23:08:50 -0800
commit1777c9de754bd46189e7ad84cc7b9c6d24ee1bb9 (patch)
treebd74d34ce6f7a7b718c1fb35480df30a0f4b145e /net
parent39509e479c8ed347452d4ebc75edad6a20216490 (diff)
downloadhistory-1777c9de754bd46189e7ad84cc7b9c6d24ee1bb9.tar.gz
[TCP]: Missing newline character in printk.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org> 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 fd9e0535bad532..a0f598569886c3 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -3029,7 +3029,7 @@ void tcp_parse_options(struct sk_buff *skb, struct tcp_opt *tp, int estab)
if(tp->snd_wscale > 14) {
if(net_ratelimit())
printk(KERN_INFO "tcp_parse_options: Illegal window "
- "scaling value %d >14 received.",
+ "scaling value %d >14 received.\n",
tp->snd_wscale);
tp->snd_wscale = 14;
}