[openwrt/openwrt] hostapd: add missing return code for the bss_mgmt_enable ubus method
LEDE Commits
lede-commits at lists.infradead.org
Sun Apr 2 16:49:46 PDT 2023
hauke pushed a commit to openwrt/openwrt.git, branch openwrt-22.03:
https://git.openwrt.org/51cf5aa731077cb718af696865bf04a27a333877
commit 51cf5aa731077cb718af696865bf04a27a333877
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Tue Mar 7 10:23:17 2023 +0100
hostapd: add missing return code for the bss_mgmt_enable ubus method
Fixes bogus errors on ubus calls
Signed-off-by: Felix Fietkau <nbd at nbd.name>
(cherry picked from commit cf992ca862f271936f61367236378378f0d91b6d)
---
package/network/services/hostapd/src/src/ap/ubus.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/network/services/hostapd/src/src/ap/ubus.c b/package/network/services/hostapd/src/src/ap/ubus.c
index fa325ea6e5..78bacef194 100644
--- a/package/network/services/hostapd/src/src/ap/ubus.c
+++ b/package/network/services/hostapd/src/src/ap/ubus.c
@@ -1097,6 +1097,8 @@ hostapd_bss_mgmt_enable(struct ubus_context *ctx, struct ubus_object *obj,
}
__hostapd_bss_mgmt_enable(hapd, flags);
+
+ return 0;
}
More information about the lede-commits
mailing list