aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/110-bool_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/hostapd/patches/110-bool_fix.patch')
-rw-r--r--package/network/services/hostapd/patches/110-bool_fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/network/services/hostapd/patches/110-bool_fix.patch b/package/network/services/hostapd/patches/110-bool_fix.patch
deleted file mode 100644
index 865c014ee3..0000000000
--- a/package/network/services/hostapd/patches/110-bool_fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/src/ap/ieee802_1x.c
-+++ b/src/ap/ieee802_1x.c
-@@ -2332,9 +2332,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";
- }
-
-