From: Federico Culloca Date: Sun, 30 Oct 2011 11:13:15 +0000 (+0100) Subject: Added capitalized charaters to json_hex_chars X-Git-Tag: json-c-0.10-20120530~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7%2Fhead;p=thirdparty%2Fjson-c.git Added capitalized charaters to json_hex_chars --- diff --git a/json_object.c b/json_object.c index 482c5e3d..bc09d658 100644 --- a/json_object.c +++ b/json_object.c @@ -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);