Merge "conman:  Fix FrenzyWPACtrl initial status." into wifitv
diff --git a/conman/interface.py b/conman/interface.py
index 7c10d7a..234ff08 100755
--- a/conman/interface.py
+++ b/conman/interface.py
@@ -499,7 +499,7 @@
     return self._events.pop(0)
 
   def request(self, request_type):
-    if request_type == 'STATUS' and self.attached():
+    if request_type == 'STATUS' and self._client_mode and self._ssid:
       return 'wpa_state=COMPLETED\nssid=%s\n' % self._ssid
 
     return ''