Browse Source

JSON: Fix \u escaping

Remove the extra 'x' character from the escaped string.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 7 years ago
parent
commit
186f204893
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/json.c

+ 1 - 1
src/utils/json.c

@@ -50,7 +50,7 @@ void json_escape_string(char *txt, size_t maxlen, const char *data, size_t len)
 			if (data[i] >= 32 && data[i] <= 126) {
 				*txt++ = data[i];
 			} else {
-				txt += os_snprintf(txt, end - txt, "\\ux%04x",
+				txt += os_snprintf(txt, end - txt, "\\u%04x",
 						   data[i]);
 			}
 			break;