accept_connection(): Add missing space to a log message
authorFabian Keil <fk@fabiankeil.de>
Sun, 16 Oct 2022 09:30:25 +0000 (11:30 +0200)
committerFabian Keil <fk@fabiankeil.de>
Sun, 16 Oct 2022 09:37:19 +0000 (11:37 +0200)
jbsockets.c

index ca1c26f..5469e99 100644 (file)
@@ -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;