summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-05-12 18:35:18 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-05-12 18:35:18 +0000
commit8ef4bb06ae9d138182eb5c09fff30e35a0ecd46f (patch)
treee34f6b99e37a8cef3fd440de592497f66d568e1f
parentb144bf6e8365a2df344f9e99f0b7f2a6f9318513 (diff)
Less verbose; angelos@ ok
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index c60e411c34f..4a3fd659803 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.86 2001/05/11 17:20:11 aaron Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.87 2001/05/12 18:35:17 aaron Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -439,7 +439,6 @@ tcp_input(m, va_alist)
ip_stripoptions(m, (struct mbuf *)0);
iphlen = sizeof(struct ip);
#else
- printf("extension headers are not allowed\n");
m_freem(m);
return;
#endif
@@ -458,7 +457,6 @@ tcp_input(m, va_alist)
ipv6_stripoptions(m, iphlen);
iphlen = sizeof(struct ip6_hdr);
#else
- printf("extension headers are not allowed\n");
m_freem(m);
return;
#endif