From: Ben Pfaff Date: Tue, 2 Mar 2010 21:38:47 +0000 (-0800) Subject: json: Fix typo in error message. X-Git-Tag: v1.0.0~259^2~62 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=4bda8288fb2fba14d02359f636375ca128aaad02;p=sliver-openvswitch.git json: Fix typo in error message. --- diff --git a/lib/json.c b/lib/json.c index 8fd9c3a7a..10fa3c121 100644 --- a/lib/json.c +++ b/lib/json.c @@ -832,7 +832,7 @@ json_string_unescape(const char *in, size_t in_len, char **outp) while (in < end) { if (*in == '"') { ds_clear(&out); - ds_put_cstr(&out, "quoted string may not include unescape \""); + ds_put_cstr(&out, "quoted string may not include unescaped \""); goto exit; } if (*in != '\\') {