[ovs-dev] [PATCH 1/5] json: Fix typo in error message.

Ben Pfaff blp at nicira.com
Wed Mar 3 17:59:47 UTC 2010


---
 lib/json.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/json.c b/lib/json.c
index 8fd9c3a..10fa3c1 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 != '\\') {
-- 
1.6.6.1





More information about the dev mailing list