summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--opentracker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opentracker.c b/opentracker.c
index 52078b5..442b294 100644
--- a/opentracker.c
+++ b/opentracker.c
@@ -266,7 +266,7 @@ static void * server_mainloop( void * args ) {
266 if( (intptr_t)cookie == FLAG_TCP ) 266 if( (intptr_t)cookie == FLAG_TCP )
267 handle_accept( sock ); 267 handle_accept( sock );
268 else if( (intptr_t)cookie == FLAG_UDP ) 268 else if( (intptr_t)cookie == FLAG_UDP )
269 while( handle_udp6( sock, &ws ) ) {}; 269 while( handle_udp6( sock, &ws ) );
270 else if( (intptr_t)cookie == FLAG_SELFPIPE ) 270 else if( (intptr_t)cookie == FLAG_SELFPIPE )
271 io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); 271 io_tryread( sock, ws.inbuf, G_INBUF_SIZE );
272 else 272 else