2167101c90
Supports listing, removing and banning clients, and hooking into probe/assoc/auth requests via object subscribe. SVN-Revision: 36081
14 lines
324 B
Diff
14 lines
324 B
Diff
--- a/src/ap/ieee802_1x.c
|
|
+++ b/src/ap/ieee802_1x.c
|
|
@@ -2043,9 +2043,9 @@ void ieee802_1x_notify_pre_auth(struct e
|
|
}
|
|
|
|
|
|
-static const char * bool_txt(Boolean bool)
|
|
+static const char * bool_txt(Boolean bool_val)
|
|
{
|
|
- return bool ? "TRUE" : "FALSE";
|
|
+ return bool_val ? "TRUE" : "FALSE";
|
|
}
|
|
|
|
#ifdef CONFIG_CTRL_IFACE_MIB
|