22 lines
674 B
Diff
22 lines
674 B
Diff
From 0111fae9ca0184e10b60494c4ecdc27f2636bc17 Mon Sep 17 00:00:00 2001
|
|
From: Patrick Walther <patrick.walther@netmodule.com>
|
|
Date: Fri, 24 Jul 2020 14:41:09 +0200
|
|
|
|
---
|
|
hostapd/hostapd_cli.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hostapd/hostapd_cli.c b/hostapd/hostapd_cli.c
|
|
index 60396f3da..ad39aeb3b 100644
|
|
--- a/hostapd/hostapd_cli.c
|
|
+++ b/hostapd/hostapd_cli.c
|
|
@@ -744,7 +744,7 @@ static int wpa_ctrl_command_sta(struct wpa_ctrl *ctrl, const char *cmd,
|
|
}
|
|
|
|
buf[len] = '\0';
|
|
- if (memcmp(buf, "FAIL", 4) == 0)
|
|
+ if (memcmp(buf, "FAIL", 4) == 0 || memcmp(buf, "UNKNOWN COMMAND", 15) == 0)
|
|
return -1;
|
|
if (print)
|
|
printf("%s", buf);
|