aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-06-13 20:58:22 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-06-13 20:58:22 +0000
commit600091c3e091ea22e6070706b252c83a986a3e02 (patch)
tree1364c72d9770d3c4c0c15c47480d29952787e1ff /src/ls.c
parent4c60a22f2a1f59e5918df5b613d5bd7c17c703c5 (diff)
downloadmpd-600091c3e091ea22e6070706b252c83a986a3e02.tar.gz
mpd-600091c3e091ea22e6070706b252c83a986a3e02.tar.xz
mpd-600091c3e091ea22e6070706b252c83a986a3e02.zip
slight bug fix for making sure url's obey the RFC's
git-svn-id: https://svn.musicpd.org/mpd/trunk@1470 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ls.c b/src/ls.c
index ce3b54674..a3e57ea43 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -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 == '-' ||