From 847145b0c220aef94137ea482648039fb814aa8b Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 17 Mar 2013 20:47:18 +0000 Subject: hostapd: initial prototype of an ubus binding Supports listing, removing and banning clients, and hooking into probe/assoc/auth requests via object subscribe. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36081 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../network/services/hostapd/patches/630-bool_fix.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/network/services/hostapd/patches/630-bool_fix.patch (limited to 'package/network/services/hostapd/patches/630-bool_fix.patch') diff --git a/package/network/services/hostapd/patches/630-bool_fix.patch b/package/network/services/hostapd/patches/630-bool_fix.patch new file mode 100644 index 000000000..510b00002 --- /dev/null +++ b/package/network/services/hostapd/patches/630-bool_fix.patch @@ -0,0 +1,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 -- cgit v1.2.3