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 ) ...@@ -2516,9 +2516,8 @@ static void httpd_HostThread( httpd_host_t *host )
continue; continue;
/* */ /* */
int kludge[] = { ufd[nfd].fd, -1 }; int fd = accept (ufd[nfd].fd, NULL, NULL);
int fd = net_Accept( host, kludge, 0 ); if (fd == -1)
if( fd < 0 )
continue; continue;
if( p_tls != NULL ) 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