From a5e908667693f96ac9fc6b62f061d693ee63e089 Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sun, 29 Jun 2014 19:48:01 -0700 Subject: Let @uri produce uppercase hexadecimal digits... instead of lowercase ones. According to RFC 3986, The uppercase hexadecimal digits 'A' through 'F' are equivalent to the lowercase digits 'a' through 'f', respectively. If two URIs differ only in the case of hexadecimal digits used in percent-encoded octets, they are equivalent. For consistency, URI producers and normalizers should use uppercase hexadecimal digits for all percent- encodings. See https://github.com/stedolan/jq/issues/451 for details. Test suite and manual are also updated to reflect this change. Signed-off-by: Nicolas Williams --- builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin.c') diff --git a/builtin.c b/builtin.c index 7b215e61..8a809f51 100644 --- a/builtin.c +++ b/builtin.c @@ -413,7 +413,7 @@ static jv f_format(jv input, jv fmt) { if (ch < 128 && unreserved[ch]) { line = jv_string_append_buf(line, s, 1); } else { - line = jv_string_concat(line, jv_string_fmt("%%%02x", ch)); + line = jv_string_concat(line, jv_string_fmt("%%%02X", ch)); } s++; } -- cgit v1.2.3