2013-03-18 04:47:18 +08:00
|
|
|
--- a/src/ap/ieee802_1x.c
|
|
|
|
+++ b/src/ap/ieee802_1x.c
|
2014-10-26 00:48:45 +08:00
|
|
|
@@ -2232,9 +2232,9 @@ void ieee802_1x_notify_pre_auth(struct e
|
2013-03-18 04:47:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-static const char * bool_txt(Boolean bool)
|
|
|
|
+static const char * bool_txt(Boolean bool_val)
|
|
|
|
{
|
|
|
|
- return bool ? "TRUE" : "FALSE";
|
|
|
|
+ return bool_val ? "TRUE" : "FALSE";
|
|
|
|
}
|
|
|
|
|
2013-11-25 23:43:15 +08:00
|
|
|
|