aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-09-08 16:23:12 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-09-08 16:23:12 -0700
commita7297eaa8fb99bb69b020e9d0520ca2d73ffa7c5 (patch)
tree1f6be0ead7a7779e297d305dd73e88403ddc57a5
parent5a9903dfec47ce107f599dc438ea8b41c9f19cba (diff)
parent526789159c00221aaaeb3b02b5add70b5c5fcb6d (diff)
Merge branch 'uri_query_fragments' into rr_with_registry
-rw-r--r--src/core/client_config/uri_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/client_config/uri_parser.c b/src/core/client_config/uri_parser.c
index 34b968a565..36ecfa5e8e 100644
--- a/src/core/client_config/uri_parser.c
+++ b/src/core/client_config/uri_parser.c
@@ -82,7 +82,7 @@ static int parse_pchar(const char *uri_text, int i) {
((c >= 'a') && (c <= 'z')) ||
((c >= '0') && (c <= '9')) ||
(c == '-' || c == '.' || c == '_' || c == '~') || /* unreserved */
-
+
(c == '!' || c == '$' || c == '&' || c == '\'' || c == '$' || c == '&' ||
c == '(' || c == ')' || c == '*' || c == '+' || c == ',' || c == ';' ||
c == '=') /* sub-delims */ ) {