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-Url: http://git.openwrt.org/project/static/gitweb.js?a=commitdiff_plain;h=cf992ca862f271936f61367236378378f0d91b6d;p=openwrt%2Fstaging%2Fnoltari.git hostapd: add missing return code for the bss_mgmt_enable ubus method Fixes bogus errors on ubus calls Signed-off-by: Felix Fietkau --- diff --git a/package/network/services/hostapd/src/src/ap/ubus.c b/package/network/services/hostapd/src/src/ap/ubus.c index 50012252e4..ddd86447eb 100644 --- a/package/network/services/hostapd/src/src/ap/ubus.c +++ b/package/network/services/hostapd/src/src/ap/ubus.c @@ -1084,6 +1084,8 @@ hostapd_bss_mgmt_enable(struct ubus_context *ctx, struct ubus_object *obj, } __hostapd_bss_mgmt_enable(hapd, flags); + + return 0; }