diff options
author | Max Kellermann <max@duempel.org> | 2013-10-24 22:33:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-24 19:59:53 +0100 |
commit | 6ba1fe75689b394d39488b691b225e4269110b61 (patch) | |
tree | 57646abb6f11c5b32f47bf57162f364f3373b125 /src | |
parent | bfae92e307aeeb80809b7cc9c44c48e87b595d22 (diff) | |
download | mpd-6ba1fe75689b394d39488b691b225e4269110b61.tar.gz mpd-6ba1fe75689b394d39488b691b225e4269110b61.tar.xz mpd-6ba1fe75689b394d39488b691b225e4269110b61.zip |
UriUtil: support ftp:// URLs in uri_remove_auth()
Diffstat (limited to 'src')
-rw-r--r-- | src/util/UriUtil.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/UriUtil.cxx b/src/util/UriUtil.cxx index 3864c5e83..a549f7938 100644 --- a/src/util/UriUtil.cxx +++ b/src/util/UriUtil.cxx @@ -98,6 +98,8 @@ uri_remove_auth(const char *uri) auth = uri + 7; else if (memcmp(uri, "https://", 8) == 0) auth = uri + 8; + else if (memcmp(uri, "ftp://", 6) == 0) + auth = uri + 6; else /* unrecognized URI */ return std::string(); |