summaryrefslogtreecommitdiff
path: root/sys/net/if_strip.c
diff options
context:
space:
mode:
authorMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-10-22 23:04:46 +0000
committerMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-10-22 23:04:46 +0000
commit722f3363bc6dbb56b427c4f04c9ea108c6ea9c7e (patch)
treec2b8e1752e345b7acb604ef98409c4480d7538c3 /sys/net/if_strip.c
parent1508441abbe759040305900bc34ec75faf3b641a (diff)
#if INET => #ifdef INET
#if INET6 => #ifdef INET6
Diffstat (limited to 'sys/net/if_strip.c')
-rw-r--r--sys/net/if_strip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_strip.c b/sys/net/if_strip.c
index 791781ed5b4..f6febb012b3 100644
--- a/sys/net/if_strip.c
+++ b/sys/net/if_strip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_strip.c,v 1.34 2008/09/10 14:01:23 blambert Exp $ */
+/* $OpenBSD: if_strip.c,v 1.35 2008/10/22 23:04:45 mpf Exp $ */
/* $NetBSD: if_strip.c,v 1.2.4.3 1996/08/03 00:58:32 jtc Exp $ */
/* from: NetBSD: if_sl.c,v 1.38 1996/02/13 22:00:23 christos Exp $ */
@@ -115,7 +115,7 @@
#include <net/netisr.h>
#include <net/route.h>
-#if INET
+#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>