From: Felix Fietkau Date: Tue, 7 Mar 2023 09:23:17 +0000 (+0100) Subject: hostapd: add missing return code for the bss_mgmt_enable ubus method X-Git-Tag: v22.03.4~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51cf5aa731077cb718af696865bf04a27a333877;p=thirdparty%2Fopenwrt.git hostapd: add missing return code for the bss_mgmt_enable ubus method Fixes bogus errors on ubus calls Signed-off-by: Felix Fietkau (cherry picked from commit cf992ca862f271936f61367236378378f0d91b6d) --- diff --git a/package/network/services/hostapd/src/src/ap/ubus.c b/package/network/services/hostapd/src/src/ap/ubus.c index fa325ea6e59..78bacef1948 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; }