diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2010-05-26 19:18:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2010-05-26 19:18:11 +0000 |
commit | 9c9d7c5d9ab3814ee6b8d18752e2f825c642e292 (patch) | |
tree | 6a52397f2de6b8285288c20fb04bce4eae6529c2 /usr.sbin/hostapd | |
parent | 7caaa4178b33037f845e9ce07a0616769a5c8713 (diff) |
No need to include <sys/sysctl.h> here and it pulls in <sys/proc.h>
which causes conflicts with the libevent macros. OK deraadt@
Diffstat (limited to 'usr.sbin/hostapd')
-rw-r--r-- | usr.sbin/hostapd/roaming.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/hostapd/roaming.c b/usr.sbin/hostapd/roaming.c index e254b0628b0..e62bf4c3191 100644 --- a/usr.sbin/hostapd/roaming.c +++ b/usr.sbin/hostapd/roaming.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roaming.c,v 1.4 2009/06/05 22:44:51 chris Exp $ */ +/* $OpenBSD: roaming.c,v 1.5 2010/05/26 19:18:10 millert Exp $ */ /* * Copyright (c) 2005, 2006 Reyk Floeter <reyk@openbsd.org> @@ -19,7 +19,6 @@ #include <sys/param.h> #include <sys/types.h> #include <sys/socket.h> -#include <sys/sysctl.h> #include <sys/tree.h> #include <sys/ioctl.h> |