diff options
Diffstat (limited to 'src/client.c')
-rw-r--r-- | src/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.c b/src/client.c index fd0695cc3..9bb0b224c 100644 --- a/src/client.c +++ b/src/client.c @@ -348,7 +348,7 @@ static int client_process_line(struct client *client) } if (ret == 0) - commandSuccess(client->fd); + command_success(client); client_write_output(client); free_cmd_list(client->cmd_list); @@ -394,7 +394,7 @@ static int client_process_line(struct client *client) } if (ret == 0) - commandSuccess(client->fd); + command_success(client); client_write_output(client); } |