summaryrefslogtreecommitdiff
path: root/common/test-path.c
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2018-10-15 14:57:16 +0200
committerDaiki Ueno <ueno@gnu.org>2018-11-07 17:23:53 +0100
commitf758142178b4cc5c650dde75152bfb85ac992178 (patch)
treee6776c73097ae0c21444c4557983f1209f194f12 /common/test-path.c
parente81f6af7ed3b39b8df0bb7ce150619ea8178d47c (diff)
url: Prefer upper-case letters in hex characters when encoding
This makes it more compliant with RFC 3986, where the use of upper-case letters is recommended (as "SHOULD"). Suggested by Sumit Bose.
Diffstat (limited to 'common/test-path.c')
-rw-r--r--common/test-path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/test-path.c b/common/test-path.c
index c77acf2..2eb5444 100644
--- a/common/test-path.c
+++ b/common/test-path.c
@@ -206,7 +206,7 @@ test_encode (void)
char *test;
test = p11_path_encode ("2309haonutb;/AOE@#$O ");
- assert_str_eq (test, "2309haonutb%3b/AOE%40%23%24O%20");
+ assert_str_eq (test, "2309haonutb%3B/AOE%40%23%24O%20");
free (test);
}