summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_ipip.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-01-31 17:27:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-01-31 17:27:04 +0000
commit2bccdd51809becfe909c271f5fef4d380c663209 (patch)
treeaacc10d49e4da03a38127fb2e1c1743cf612a734 /sys/netinet/ip_ipip.c
parented445cc242f54511cc5eb7452ddae8f119606cc5 (diff)
KNF
Diffstat (limited to 'sys/netinet/ip_ipip.c')
-rw-r--r--sys/netinet/ip_ipip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c
index 44d9494d9bc..41ddce52389 100644
--- a/sys/netinet/ip_ipip.c
+++ b/sys/netinet/ip_ipip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ipip.c,v 1.27 2002/07/05 23:12:19 angelos Exp $ */
+/* $OpenBSD: ip_ipip.c,v 1.28 2003/01/31 17:27:03 deraadt Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
* Angelos D. Keromytis (kermit@csd.uch.gr) and
@@ -214,7 +214,7 @@ ipip_input(struct mbuf *m, int iphlen, struct ifnet *gifp)
m_adj(m, iphlen);
/* Sanity check */
- if (m->m_pkthdr.len < sizeof(struct ip)) {
+ if (m->m_pkthdr.len < sizeof(struct ip)) {
ipipstat.ipips_hdrops++;
m_freem(m);
return;