summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2020-01-06 08:13:16 +0100
committernsensfel <SpamShield0@noot-noot.org>2020-01-06 08:13:16 +0100
commit11138ae4e8e3ed2f01156189923f7904c8f21591 (patch)
tree72b724c397a685140a9dc37b6314b88f798be8da /src/server/communication_thread.c
parentf9a06303ce72aa6697c17447dfef545db72c2407 (diff)
...
Diffstat (limited to 'src/server/communication_thread.c')
-rw-r--r--src/server/communication_thread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/communication_thread.c b/src/server/communication_thread.c
index 0f367da..cc91065 100644
--- a/src/server/communication_thread.c
+++ b/src/server/communication_thread.c
@@ -9,7 +9,6 @@
/******************************************************************************/
/**** LOCAL FUNCTIONS *********************************************************/
/******************************************************************************/
-
static void main_loop (struct relabsd_server server [const static 1])
{
int communication_socket, current_client_socket;
@@ -87,7 +86,7 @@ static void main_loop (struct relabsd_server server [const static 1])
return -1;
}
- (void) handle_client(current_client_socket, server);
+ (void) relabsd_server_handle_client(current_client_socket, server);
}
}