summaryrefslogtreecommitdiff
path: root/sysutils/fusefs-curlftpfs/files/patch-path__utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/fusefs-curlftpfs/files/patch-path__utils.c')
-rw-r--r--sysutils/fusefs-curlftpfs/files/patch-path__utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/fusefs-curlftpfs/files/patch-path__utils.c b/sysutils/fusefs-curlftpfs/files/patch-path__utils.c
index 9ce6c500dbab..7855c90e7043 100644
--- a/sysutils/fusefs-curlftpfs/files/patch-path__utils.c
+++ b/sysutils/fusefs-curlftpfs/files/patch-path__utils.c
@@ -12,7 +12,7 @@
+static inline int is_unreserved_rfc3986(char c)
+{
+ int is_locase_alpha = (c >= 'a' && c <= 'z');
-+ int is_upcase_alpha = (c >= 'a' && c <= 'z');
++ int is_upcase_alpha = (c >= 'A' && c <= 'Z');
+ int is_digit = (c >= '0' && c <= '9');
+ int is_special = c == '-'
+ || c == '.'