From d801812e44370046096793b7c72d1346286c9dcc Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 16 Oct 2022 11:30:25 +0200 Subject: [PATCH] accept_connection(): Add missing space to a log message --- jbsockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jbsockets.c b/jbsockets.c index ca1c26f7..5469e99d 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1439,7 +1439,7 @@ int accept_connection(struct client_state * csp, jb_socket fds[]) if ((-1 == retval) || listen_addr_size <= retval) { log_error(LOG_LEVEL_ERROR, - "Server name (%s) and port number (%d) ASCII decimal representation" + "Server name (%s) and port number (%d) ASCII decimal representation " "don't fit into %lu bytes", host_addr, csp->config->hport[i], listen_addr_size); return 0; -- 2.39.2