Skip to content

Commit

Permalink
Add missing newline to the client error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaiya committed Nov 11, 2023
1 parent d157f8a commit a11e6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit a11e6c7

Please sign in to comment.