diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c index 834fb6420..faa68e8d0 100644 --- a/src/command.c +++ b/src/command.c @@ -1239,7 +1239,6 @@ static int processCommandInternal(struct client *client, int processListOfCommands(struct client *client, int *permission, int listOK, struct strnode *list) { - int fd = client_get_fd(client); struct strnode *cur = list; int ret = 0; @@ -1253,7 +1252,7 @@ int processListOfCommands(struct client *client, int *permission, if (ret != 0 || client_is_expired(client)) goto out; else if (listOK) - fdprintf(fd, "list_OK\n"); + client_puts(client, "list_OK\n"); command_listNum++; cur = cur->next; } |