diff mbox

[1/2] ctrl: Do not wait for monitor to attach if no control interface

Message ID 1451226307-14317-1-git-send-email-ilan.peer@intel.com
State Accepted
Headers show

Commit Message

Ilan Peer Dec. 27, 2015, 2:25 p.m. UTC
In case that an interface has started without a control interface
initialized, skip waiting for monitor to attach.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
---
 wpa_supplicant/ctrl_iface_unix.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Jouni Malinen Dec. 28, 2015, 4:56 p.m. UTC | #1
Thanks, both applied.
diff mbox

Patch

diff --git a/wpa_supplicant/ctrl_iface_unix.c b/wpa_supplicant/ctrl_iface_unix.c
index 2c71b2d..7b36751 100644
--- a/wpa_supplicant/ctrl_iface_unix.c
+++ b/wpa_supplicant/ctrl_iface_unix.c
@@ -1058,6 +1058,9 @@  void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
 	struct sockaddr_un from;
 	socklen_t fromlen = sizeof(from);
 
+	if (priv->sock == -1)
+		return;
+
 	for (;;) {
 		wpa_printf(MSG_DEBUG, "CTRL_IFACE - %s - wait for monitor to "
 			   "attach", priv->wpa_s->ifname);