summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1997-06-24 02:20:24 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1997-06-24 02:20:24 +0000
commitf011d79e0379b9f3287cb73cb690f8a4824cd2c7 (patch)
tree48cb72d93ed930085bd4e8d111781ccef8365702
parentca63d1c1cc44a3f0a09b2fa1aa70dd43ee6d8faa (diff)
Comment reordering.
-rw-r--r--sys/netinet/ip_ip4.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/netinet/ip_ip4.c b/sys/netinet/ip_ip4.c
index b4bf16157d2..a6f5a1fc4b4 100644
--- a/sys/netinet/ip_ip4.c
+++ b/sys/netinet/ip_ip4.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ip4.c,v 1.6 1997/06/20 05:41:52 provos Exp $ */
+/* $OpenBSD: ip_ip4.c,v 1.7 1997/06/24 02:20:23 angelos Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
@@ -75,11 +75,12 @@ ip4_input(register struct mbuf *m, int iphlen)
struct ip *ipo, *ipi;
struct ifqueue *ifq = NULL;
int s;
+
+ ip4stat.ip4s_ipackets++;
+
/*
* Strip IP options, if any.
*/
-
- ip4stat.ip4s_ipackets++;
if (iphlen > sizeof (struct ip))
{
ip_stripoptions(m, (struct mbuf *)0);