diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-13 20:58:22 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-13 20:58:22 +0000 |
commit | 600091c3e091ea22e6070706b252c83a986a3e02 (patch) | |
tree | 1364c72d9770d3c4c0c15c47480d29952787e1ff | |
parent | 4c60a22f2a1f59e5918df5b613d5bd7c17c703c5 (diff) | |
download | mpd-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 '')
-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 == '-' || |