hostapd: add missing return code for the bss_mgmt_enable ubus method

Fixes bogus errors on ubus calls

Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry picked from commit cf992ca862)
This commit is contained in:
Felix Fietkau 2023-03-07 10:23:17 +01:00 committed by Tianling Shen
parent c35f7f23db
commit 84451d680c
No known key found for this signature in database
GPG Key ID: 6850B6345C862176

View File

@ -1084,6 +1084,8 @@ hostapd_bss_mgmt_enable(struct ubus_context *ctx, struct ubus_object *obj,
}
__hostapd_bss_mgmt_enable(hapd, flags);
return 0;
}