From a11e6c70d4e73c9194a87dbf3d2cdb76007d8271 Mon Sep 17 00:00:00 2001 From: Raheman Vaiya Date: Fri, 10 Nov 2023 21:02:11 -0500 Subject: [PATCH] Add missing newline to the client error message --- src/ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc.c b/src/ipc.c index 92f679f..e6cbe43 100644 --- a/src/ipc.c +++ b/src/ipc.c @@ -37,7 +37,7 @@ int ipc_connect() strncpy(addr.sun_path, SOCKET_PATH, sizeof(addr.sun_path)-1); if (connect(sd, (struct sockaddr *) &addr, sizeof addr) < 0) { - fprintf(stderr, "ERROR: Failed to connect to \"" SOCKET_PATH "\", make sure keyd is running and you have permission to access the socket."); + fprintf(stderr, "ERROR: Failed to connect to \"" SOCKET_PATH "\", make sure the daemon is running and you have permission to access the socket.\n"); exit(-1); }