diff options
Diffstat (limited to 'src/ls.c')
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ int isValidRemoteUtf8Url(char * utf8url) { temp = utf8url; while(*temp) { if((*temp >= 'a' && *temp <= 'z') || - (*temp >= 'A' && *temp <= 'z') || + (*temp >= 'A' && *temp <= 'Z') || (*temp >= '0' && *temp <= '9') || *temp == '$' || *temp == '-' || |