json: Fix typo in error message.
authorBen Pfaff <blp@nicira.com>
Tue, 2 Mar 2010 21:38:47 +0000 (13:38 -0800)
committerBen Pfaff <blp@nicira.com>
Wed, 3 Mar 2010 17:55:01 +0000 (09:55 -0800)
lib/json.c

index 8fd9c3a..10fa3c1 100644 (file)
@@ -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 != '\\') {