diff options
author | Max Kellermann <max@duempel.org> | 2015-08-14 18:57:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-14 18:57:44 +0200 |
commit | c8d0f947d2270a52183c653a641bca5b7321f915 (patch) | |
tree | 6986bc2f538e610da7a17e98def09a4c16d54773 /src/protocol/Result.cxx | |
parent | 86e036c3933def22b6ff0eae5bcf9cd7103240e7 (diff) | |
download | mpd-c8d0f947d2270a52183c653a641bca5b7321f915.tar.gz mpd-c8d0f947d2270a52183c653a641bca5b7321f915.tar.xz mpd-c8d0f947d2270a52183c653a641bca5b7321f915.zip |
protocol/Result: move error code to class Response
Diffstat (limited to 'src/protocol/Result.cxx')
-rw-r--r-- | src/protocol/Result.cxx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/protocol/Result.cxx b/src/protocol/Result.cxx index 66ea185cb..a8a1c2d46 100644 --- a/src/protocol/Result.cxx +++ b/src/protocol/Result.cxx @@ -21,8 +21,6 @@ #include "Result.hxx" #include "client/Client.hxx" -#include <assert.h> - const char *current_command; int command_list_num; @@ -31,26 +29,3 @@ command_success(Client &client) { client_puts(client, "OK\n"); } - -void -command_error_v(Client &client, enum ack error, - const char *fmt, va_list args) -{ - assert(current_command != nullptr); - - client_printf(client, "ACK [%i@%i] {%s} ", - (int)error, command_list_num, current_command); - client_vprintf(client, fmt, args); - client_puts(client, "\n"); - - current_command = nullptr; -} - -void -command_error(Client &client, enum ack error, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - command_error_v(client, error, fmt, args); - va_end(args); -} |