summaryrefslogtreecommitdiff
path: root/opentracker.c
diff options
context:
space:
mode:
authorerdgeist <>2009-01-16 02:28:54 +0000
committererdgeist <>2009-01-16 02:28:54 +0000
commit0b875273d4f17f36b478ab0a524531a97b88e08b (patch)
tree00a810758a97bbe94486c1e0b138095586ec1aad /opentracker.c
parentf12fa4c36216e83246767a3cff8dbc86e7d7c6eb (diff)
Remove debug message
Diffstat (limited to 'opentracker.c')
-rw-r--r--opentracker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opentracker.c b/opentracker.c
index 8811a6e..fd1698a 100644
--- a/opentracker.c
+++ b/opentracker.c
@@ -217,8 +217,8 @@ static void server_mainloop( ) {
217 handle_accept( sock ); 217 handle_accept( sock );
218 else if( (intptr_t)cookie == FLAG_UDP ) 218 else if( (intptr_t)cookie == FLAG_UDP )
219 handle_udp6( sock, &ws ); 219 handle_udp6( sock, &ws );
220 else if( (intptr_t)cookie == FLAG_SELFPIPE ) { printf( "woke up\n" ); 220 else if( (intptr_t)cookie == FLAG_SELFPIPE )
221 io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); } 221 io_tryread( sock, ws.inbuf, G_INBUF_SIZE );
222 else 222 else
223 handle_read( sock, &ws ); 223 handle_read( sock, &ws );
224 } 224 }