]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Added capitalized charaters to json_hex_chars 7/head
authorFederico Culloca <federicoculloca@gmail.com>
Sun, 30 Oct 2011 11:13:15 +0000 (12:13 +0100)
committerFederico Culloca <federicoculloca@gmail.com>
Sun, 30 Oct 2011 11:13:15 +0000 (12:13 +0100)
json_object.c

index 482c5e3d947d1d1c7a25389a624c7fdd0fa52a2e..bc09d658ee20d760481783571c7eabc5bd666e2d 100644 (file)
@@ -32,7 +32,7 @@
 /* #define REFCOUNT_DEBUG 1 */
 
 const char *json_number_chars = "0123456789.+-eE";
-const char *json_hex_chars = "0123456789abcdef";
+const char *json_hex_chars = "0123456789abcdefABCDEF";
 
 static void json_object_generic_delete(struct json_object* jso);
 static struct json_object* json_object_new(enum json_type o_type);