commit 544c6c412a3e432cb88a4454d0ccfab2856fac8c
parent b093a5d16f5e686f70e1ff20829246fecc840a5f
Author: S. Christoffer Eliesen <christoffer@eliesen.no>
Date: Thu, 22 Oct 2015 13:00:37 +0200
ipc: Return correct status in ipc reply.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/ipc.c b/sway/ipc.c
@@ -222,7 +222,7 @@ void ipc_client_handle_command(struct ipc_client *client) {
case IPC_COMMAND:
{
buf[client->payload_length] = '\0';
- bool success = handle_command(buf);
+ bool success = (handle_command(buf) == CMD_SUCCESS);
char reply[64];
int length = snprintf(reply, sizeof(reply), "{\"success\":%s}", success ? "true" : "false");
ipc_send_reply(client, reply, (uint32_t) length);