summaryrefslogtreecommitdiff
path: root/opentracker.c
diff options
context:
space:
mode:
Diffstat (limited to 'opentracker.c')
-rw-r--r--opentracker.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/opentracker.c b/opentracker.c
index 09010c7..aed8374 100644
--- a/opentracker.c
+++ b/opentracker.c
@@ -270,10 +270,9 @@ static void * server_mainloop( void * args ) {
270 handle_accept( sock ); 270 handle_accept( sock );
271 else if( (intptr_t)cookie == FLAG_UDP ) 271 else if( (intptr_t)cookie == FLAG_UDP )
272 handle_udp6( sock, &ws ); 272 handle_udp6( sock, &ws );
273 else if( (intptr_t)cookie == FLAG_SELFPIPE ) { 273 else if( (intptr_t)cookie == FLAG_SELFPIPE )
274 io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); 274 io_tryread( sock, ws.inbuf, G_INBUF_SIZE );
275 fprintf(stderr, "pipe\n"); 275 else
276 } else
277 handle_read( sock, &ws ); 276 handle_read( sock, &ws );
278 } 277 }
279 278