JSON: Fix \u escaping
Remove the extra 'x' character from the escaped string. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
a82349347d
commit
186f204893
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue