Index: sources/wifi/WifiInterface.cpp =================================================================== diff -u -ra39588d07df5f8723abc79115c974965d0cad1e4 -rc5abb06fef08acd373b4fb0e5b285c34da94cce5 --- sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision a39588d07df5f8723abc79115c974965d0cad1e4) +++ sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision c5abb06fef08acd373b4fb0e5b285c34da94cce5) @@ -41,7 +41,7 @@ _processSetStaticGateway .setParent(this); _processSetStaticSubnetMask .setParent(this); _processSetDNS .setParent(this); - _processReadNetworkInfo .setParent(this); + _processReadNetworkInfo .setParent(this); } @@ -513,7 +513,7 @@ /*! * \brief WifiInterface::doRequestNetworkInfo - * Handles a request to read the network macAddress + * Handles a request to read the network info (ssid + macAddress) */ void WifiInterface::doRequestNetworkInfo() { @@ -526,7 +526,7 @@ } QString script; if ( ! checkScript(script, Wifi_Read_Network_Info) ) return; _processReadNetworkInfo.start(script, - QStringList() << _iface); + QStringList() << _iface); } @@ -566,7 +566,6 @@ const QString networkSSid = parseNetworkSSID(output); _network.ssid(networkSSid.trimmed()); - qDebug()<< networkSSid; if (_processReadGateway.state() != QProcess::NotRunning) { LOG_DEBUG(QString("Rejecting request for %1. %2 is already running.")