From 515a391ee4dd964f660c343979fa1fd78c49929c Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Mon, 15 Feb 2010 23:31:05 +0000 Subject: [PATCH] Removed left-over debug printfs --- core/net/uip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/net/uip.c b/core/net/uip.c index 90512ff8c..b8be16fc7 100644 --- a/core/net/uip.c +++ b/core/net/uip.c @@ -41,7 +41,7 @@ * * This file is part of the uIP TCP/IP stack. * - * $Id: uip.c,v 1.22 2010/02/15 18:03:07 adamdunkels Exp $ + * $Id: uip.c,v 1.23 2010/02/15 23:31:05 adamdunkels Exp $ * */ @@ -736,6 +736,7 @@ uip_process(u8_t flag) /* If the connection has outstanding data, we increase the connection's timer and see if it has reached the RTO value in which case we retransmit. */ + if(uip_outstanding(uip_connr)) { if(uip_connr->timer-- == 0) { if(uip_connr->nrtx == UIP_MAXRTX ||