summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-08-22 09:25:08 -0400
committerAndrew Cady <d@jerkface.net>2020-08-22 09:25:08 -0400
commit38f74d3530ff3d5724493114f430c3b2a851b82d (patch)
tree316131d5dd5d3bc641349dc4cddc61f379a28ab2
parent34867d178d3173e679d54c129e2681a1f9d774f1 (diff)
fixup! change log levels
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index a9493f0..54f8c8a 100644
--- a/client.c
+++ b/client.c
@@ -290,8 +290,8 @@ void client_connected_loop_iteration(uint32_t friendnumber)
290 /* Handle accepting new connections */ 290 /* Handle accepting new connections */
291 if(client_tunnel.sockfd <= 0) /* Don't accept if we're already waiting to establish a tunnel */ 291 if(client_tunnel.sockfd <= 0) /* Don't accept if we're already waiting to establish a tunnel */
292 { 292 {
293 log_printf(L_DEBUG, "calling accept(%d)", bind_sockfd);
294 accept_fd = accept(bind_sockfd, NULL, NULL); 293 accept_fd = accept(bind_sockfd, NULL, NULL);
294 log_printf(L_DEBUG4, "calling accept(%d)", bind_sockfd);
295 if(accept_fd != -1) 295 if(accept_fd != -1)
296 { 296 {
297 log_printf(L_INFO, "Accepting a new connection - requesting tunnel...\n"); 297 log_printf(L_INFO, "Accepting a new connection - requesting tunnel...\n");