summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ip4.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-28 23:09:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-28 23:09:59 +0000
commit190b9bd93e9e482b76c39160dfc0cae2ff450568 (patch)
treee92dbf89db13beaee64200137bfad99e892a7d22 /sys/netinet/ip_ip4.c
parentf63706bd1cf47e17c8e7342d056f58913a793f93 (diff)
more \n in log()
Diffstat (limited to 'sys/netinet/ip_ip4.c')
-rw-r--r--sys/netinet/ip_ip4.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ip4.c b/sys/netinet/ip_ip4.c
index ac9331a7439..e0254e17172 100644
--- a/sys/netinet/ip_ip4.c
+++ b/sys/netinet/ip_ip4.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ip4.c,v 1.12 1997/07/14 08:48:47 provos Exp $ */
+/* $OpenBSD: ip_ip4.c,v 1.13 1997/09/28 23:09:57 deraadt Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
@@ -132,7 +132,7 @@ ip4_input(register struct mbuf *m, int iphlen)
if (ipi->ip_v != IPVERSION)
{
log(LOG_WARNING,
- "ip4_input(): wrong version %d on IP packet from %x to %x (%x->%x)",
+ "ip4_input(): wrong version %d on IP packet from %x to %x (%x->%x)\n",
ipi->ip_v, ipo->ip_src, ipo->ip_dst, ipi->ip_src, ipi->ip_dst);
ip4stat.ip4s_notip4++;
return;
@@ -281,7 +281,7 @@ ipe4_zeroize(struct tdb *tdbp)
void
ipe4_input(struct mbuf *m, ...)
{
- log(LOG_ALERT, "ipe4_input(): should never be called");
+ log(LOG_ALERT, "ipe4_input(): should never be called\n");
if (m)
m_freem(m);
}