aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd/patches/630-bool_fix.patch
blob: 510b00002743dcb4a7dca61a7c9f0b9b42fdabd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- 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