aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/OtherCommands.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-10-20 12:07:18 +0200
committerMax Kellermann <max@duempel.org>2015-10-20 12:07:18 +0200
commit76f85e6f7bea6f286389caf96835f2cd61d0961b (patch)
treee26b3a6f13eaaa5883f3558ca8dd3b7b2714106f /src/command/OtherCommands.cxx
parent81ce684b35ca498ef5d8c738799284476f4573a0 (diff)
downloadmpd-76f85e6f7bea6f286389caf96835f2cd61d0961b.tar.gz
mpd-76f85e6f7bea6f286389caf96835f2cd61d0961b.tar.xz
mpd-76f85e6f7bea6f286389caf96835f2cd61d0961b.zip
command/DatabaseCommands: pass URI to handle_lsinfo2()
Diffstat (limited to 'src/command/OtherCommands.cxx')
-rw-r--r--src/command/OtherCommands.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/OtherCommands.cxx b/src/command/OtherCommands.cxx
index be026a56a..d9c198973 100644
--- a/src/command/OtherCommands.cxx
+++ b/src/command/OtherCommands.cxx
@@ -200,7 +200,7 @@ handle_lsinfo(Client &client, Request args, Response &r)
}
#ifdef ENABLE_DATABASE
- CommandResult result = handle_lsinfo2(client, args, r);
+ CommandResult result = handle_lsinfo2(client, uri, r);
if (result != CommandResult::OK)
return result;
#endif