finish ack error codes

git-svn-id: https://svn.musicpd.org/mpd/trunk@1325 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes
2004-06-04 02:51:54 +00:00
parent f958e0a4c5
commit 630d33b234
11 changed files with 121 additions and 80 deletions

View File

@@ -23,6 +23,8 @@
#include "list.h"
#include "myfprintf.h"
#include "log.h"
#include "ack.h"
#include <stdio.h>
@@ -43,17 +45,18 @@ void finishCommands();
#define commandSuccess(fp) myfprintf(fp, "OK\n")
#define commandError(fp, format, ... ) \
#define commandError(fp, error, format, ... ) \
{\
if(current_command) { \
myfprintf(fp, "ACK [%s:%i] " format "\n", \
myfprintf(fp, "ACK [%s:%i:%i] " format "\n", \
current_command, command_listNum, \
##__VA_ARGS__); \
(int)error, ##__VA_ARGS__); \
current_command = NULL; \
} \
else { \
myfprintf(fp, "ACK [:%i] " format "\n", \
command_listNum, ##__VA_ARGS__); \
myfprintf(fp, "ACK [:%i:%i] " format "\n", \
command_listNum, (int)error, \
##__VA_ARGS__); \
} \
}