diff options
author | Jouni Malinen <j@w1.fi> | 2013-12-31 20:30:49 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2013-12-31 20:30:49 (GMT) |
commit | f7fb676633b592d81d38155b9a3079964f2e051e (patch) | |
tree | 298105ee85713c031e6f2b9a8029528e1641b777 | |
parent | 3cf06c9e2cc3d4727ce7aa34690a2c6691bf8e7c (diff) | |
download | hostap-f7fb676633b592d81d38155b9a3079964f2e051e.zip hostap-f7fb676633b592d81d38155b9a3079964f2e051e.tar.gz hostap-f7fb676633b592d81d38155b9a3079964f2e051e.tar.bz2 |
ACS: Mark acs_fail() static
This function is not used outside acs.c.
Signed-hostap: Jouni Malinen <j@w1.fi>
-rw-r--r-- | src/ap/acs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ap/acs.c b/src/ap/acs.c index 9ef221e..f58b091 100644 --- a/src/ap/acs.c +++ b/src/ap/acs.c @@ -280,7 +280,7 @@ static void acs_cleanup(struct hostapd_iface *iface) } -void acs_fail(struct hostapd_iface *iface) +static void acs_fail(struct hostapd_iface *iface) { wpa_printf(MSG_ERROR, "ACS: Failed to start"); acs_cleanup(iface); |