From 8c2696bb59ea6e9dc01e173a2b1556122dcd22fe Mon Sep 17 00:00:00 2001 From: PolynomialDivision Date: Sun, 7 Jan 2018 16:54:38 +0100 Subject: [PATCH] dont deny auth --- src/utils/ubus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/ubus.c b/src/utils/ubus.c index 1c2d403..ea55afe 100644 --- a/src/utils/ubus.c +++ b/src/utils/ubus.c @@ -571,7 +571,8 @@ static int hostapd_notify(struct ubus_context *ctx, struct ubus_object *obj, if (strncmp(method, "probe", 5) == 0) { return handle_probe_req(msg); } else if (strncmp(method, "auth", 4) == 0) { - return handle_auth_req(msg); + //return handle_auth_req(msg); + return 0; } else if (strncmp(method, "assoc", 5) == 0) { return handle_assoc_req(msg); } else if (strncmp(method, "deauth", 6) == 0) {