diff options
author | Max Kellermann <max@duempel.org> | 2015-08-11 22:11:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-11 22:43:10 +0200 |
commit | 0f92d021a1dc2992352b635846428229d2c9ffbb (patch) | |
tree | 428bb5673728c67cf1fd29672609c9e367ad9da0 /src/command/StorageCommands.cxx | |
parent | cbdc3194cc20aa5abcce8b53c44d46a96002ad3a (diff) | |
download | mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.tar.gz mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.tar.xz mpd-0f92d021a1dc2992352b635846428229d2c9ffbb.zip |
command/Request: new struct wrapping ConstBuffer<const char *>
Diffstat (limited to 'src/command/StorageCommands.cxx')
-rw-r--r-- | src/command/StorageCommands.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/command/StorageCommands.cxx b/src/command/StorageCommands.cxx index 5bb37ae6f..3f1e5f321 100644 --- a/src/command/StorageCommands.cxx +++ b/src/command/StorageCommands.cxx @@ -21,6 +21,7 @@ #include "config.h" #include "StorageCommands.hxx" +#include "Request.hxx" #include "CommandError.hxx" #include "protocol/Result.hxx" #include "util/UriUtil.hxx" @@ -168,7 +169,7 @@ print_storage_uri(Client &client, const Storage &storage) } CommandResult -handle_listmounts(Client &client, gcc_unused ConstBuffer<const char *> args) +handle_listmounts(Client &client, gcc_unused Request args) { Storage *_composite = client.partition.instance.storage; if (_composite == nullptr) { @@ -190,7 +191,7 @@ handle_listmounts(Client &client, gcc_unused ConstBuffer<const char *> args) } CommandResult -handle_mount(Client &client, ConstBuffer<const char *> args) +handle_mount(Client &client, Request args) { Storage *_composite = client.partition.instance.storage; if (_composite == nullptr) { @@ -253,7 +254,7 @@ handle_mount(Client &client, ConstBuffer<const char *> args) } CommandResult -handle_unmount(Client &client, ConstBuffer<const char *> args) +handle_unmount(Client &client, Request args) { Storage *_composite = client.partition.instance.storage; if (_composite == nullptr) { |