diff options
Diffstat (limited to 'discover/discover-server.c')
-rw-r--r-- | discover/discover-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discover/discover-server.c b/discover/discover-server.c index 6806589..5f6f4d5 100644 --- a/discover/discover-server.c +++ b/discover/discover-server.c @@ -286,7 +286,7 @@ static int discover_server_process_connection(void *arg) struct client *client; /* accept the incoming connection */ - fd = accept(server->socket, NULL, 0); + fd = accept(server->socket, NULL, NULL); if (fd < 0) { pb_log("accept: %s\n", strerror(errno)); return 0; |