diff options
author | Max Kellermann <max@duempel.org> | 2015-03-02 21:22:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-03-02 21:25:55 +0100 |
commit | 6ff394bcc95fbd3796e44b72c7aa4bfe9e3f759b (patch) | |
tree | eac22dcaecacc97c4e6c953f332621933e912e77 /src/command/StorageCommands.cxx | |
parent | 7ce96585f5e0a5786f17d7996252b5c58e60d0ed (diff) | |
download | mpd-6ff394bcc95fbd3796e44b72c7aa4bfe9e3f759b.tar.gz mpd-6ff394bcc95fbd3796e44b72c7aa4bfe9e3f759b.tar.xz mpd-6ff394bcc95fbd3796e44b72c7aa4bfe9e3f759b.zip |
StorageCommands: use PathTraitsUTF8 for protocol argument
Diffstat (limited to '')
-rw-r--r-- | src/command/StorageCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/StorageCommands.cxx b/src/command/StorageCommands.cxx index 624ff92c6..5bb37ae6f 100644 --- a/src/command/StorageCommands.cxx +++ b/src/command/StorageCommands.cxx @@ -148,7 +148,7 @@ print_storage_uri(Client &client, const Storage &storage) if (uri.empty()) return; - if (PathTraitsFS::IsAbsolute(uri.c_str())) { + if (PathTraitsUTF8::IsAbsolute(uri.c_str())) { /* storage points to local directory */ if (!client.IsLocal()) |