diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-26 21:00:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-10-26 21:00:56 +0000 |
commit | db7662fa7a583b3032cbe74c25db072c599fb3c6 (patch) | |
tree | f9506970a7afec50ddfb9e630aa97f325d2c6d4d | |
parent | 948f076ca0946c27e2283d0d442c7b55a84f2bc2 (diff) |
fix bpf; diagnosed by fgs
-rw-r--r-- | sys/arch/powerpc/mac/if_gm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/mac/if_gm.c b/sys/arch/powerpc/mac/if_gm.c index acab31afb1b..6d6547e0431 100644 --- a/sys/arch/powerpc/mac/if_gm.c +++ b/sys/arch/powerpc/mac/if_gm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gm.c,v 1.9 2000/10/19 04:53:05 drahn Exp $ */ +/* $OpenBSD: if_gm.c,v 1.10 2000/10/26 21:00:55 deraadt Exp $ */ /* $NetBSD: if_gm.c,v 1.2 2000/03/04 11:17:00 tsubai Exp $ */ /*- @@ -30,8 +30,8 @@ #ifdef __NetBSD__ #include "opt_inet.h" #include "opt_ns.h" -#include "bpfilter.h" #endif /* __NetBSD__ */ +#include "bpfilter.h" #include <sys/param.h> #include <sys/device.h> |