Commit 968f7ba0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remoev reverse abstraction

parent eff806c5
......@@ -2516,9 +2516,8 @@ static void httpd_HostThread( httpd_host_t *host )
continue;
/* */
int kludge[] = { ufd[nfd].fd, -1 };
int fd = net_Accept( host, kludge, 0 );
if( fd < 0 )
int fd = accept (ufd[nfd].fd, NULL, NULL);
if (fd == -1)
continue;
if( p_tls != NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment