summaryrefslogtreecommitdiff
path: root/core/Messenger.c
diff options
context:
space:
mode:
authorOliver Hunt <oliver.huntuk@gmail.com>2013-07-14 02:57:09 +0100
committerOliver Hunt <oliver.huntuk@gmail.com>2013-07-14 02:57:09 +0100
commit9f38ab582c7d37548faf421136c58e128dd824d1 (patch)
tree5a253c0cef419d84d1aef1b3422fcf862ce0b133 /core/Messenger.c
parentb3e5da125c6294c749fb57e4c7d07649b9ab4afb (diff)
fixed the ncurses client i believe
Diffstat (limited to 'core/Messenger.c')
-rw-r--r--core/Messenger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Messenger.c b/core/Messenger.c
index cc22a7f5..37e369fa 100644
--- a/core/Messenger.c
+++ b/core/Messenger.c
@@ -346,11 +346,11 @@ void doMessenger()
346 if(DHT_handlepacket(data, length, ip_port) && LosslessUDP_handlepacket(data, length, ip_port)) 346 if(DHT_handlepacket(data, length, ip_port) && LosslessUDP_handlepacket(data, length, ip_port))
347 { 347 {
348 //if packet is discarded 348 //if packet is discarded
349 printf("Received unhandled packet with length: %u\n", length); 349 //printf("Received unhandled packet with length: %u\n", length);
350 } 350 }
351 else 351 else
352 { 352 {
353 printf("Received handled packet with length: %u\n", length); 353 //printf("Received handled packet with length: %u\n", length);
354 } 354 }
355 //} 355 //}
356 } 356 }