summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/wifi/qwifisupplicant.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wifi/qwifisupplicant.cpp b/src/wifi/qwifisupplicant.cpp
index 34a40af..7b303ed 100644
--- a/src/wifi/qwifisupplicant.cpp
+++ b/src/wifi/qwifisupplicant.cpp
@@ -305,9 +305,9 @@ int QWifiSupplicant::receiveEvent(char *reply, size_t *reply_len)
Decode wpa_supplicant encoded string, see file hostapd/src/utils/common.c
in git://w1.fi/hostap.git repository.
- For Ascii encoded string, any octet < 32 or > 127 is encoded as a "\x"
+ For Ascii encoded string, any octet < 32 or > 127 is encoded as a "\\x"
followed by the hex representation of the octet. Exception chars are ",
- \, \e, \n, \r, \t which are escaped by a backslash
+ \\, \\e, \\n, \\r, \\t which are escaped by a backslash
*/
QString QWifiSupplicant::decodeHexEncoded(const QString &encoded)