diff options
author | Max Kellermann <max@duempel.org> | 2013-10-29 20:33:20 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-29 20:36:52 +0100 |
commit | 2d5413fc3ba2dc77189bed3dfbbc65ad4243e477 (patch) | |
tree | 571e3b4cb870602c3da3d74b82fa5fdb8bb8cbf3 /src/db/ProxyDatabasePlugin.cxx | |
parent | a6aa0e4cbf3068ed5a61b7bcef705800caa9fc41 (diff) | |
download | mpd-2d5413fc3ba2dc77189bed3dfbbc65ad4243e477.tar.gz mpd-2d5413fc3ba2dc77189bed3dfbbc65ad4243e477.tar.xz mpd-2d5413fc3ba2dc77189bed3dfbbc65ad4243e477.zip |
DatabaseSelection: use std::string
Diffstat (limited to 'src/db/ProxyDatabasePlugin.cxx')
-rw-r--r-- | src/db/ProxyDatabasePlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/ProxyDatabasePlugin.cxx b/src/db/ProxyDatabasePlugin.cxx index 3293c26b5..e859e11eb 100644 --- a/src/db/ProxyDatabasePlugin.cxx +++ b/src/db/ProxyDatabasePlugin.cxx @@ -398,7 +398,7 @@ ProxyDatabase::Visit(const DatabaseSelection &selection, // TODO: match // TODO: auto-reconnect - return ::Visit(connection, selection.uri, selection.recursive, + return ::Visit(connection, selection.uri.c_str(), selection.recursive, visit_directory, visit_song, visit_playlist, error); } |