]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/commitdiff
patch #7329: tcp_timer_needed prototype was ifdef'ed out for LWIP_TIMERS==0
authorgoldsimon <goldsimon>
Mon, 22 Nov 2010 17:32:12 +0000 (17:32 +0000)
committergoldsimon <goldsimon>
Mon, 22 Nov 2010 17:32:12 +0000 (17:32 +0000)
CHANGELOG
src/core/timers.c

index 29fa75c92277eff0a7fff978ca54b6920d5ce2cc..1327c1f988e376985aafcfd262f3ab71141b96b6 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -233,6 +233,10 @@ HISTORY
 
   ++ Bugfixes:
 
+  2010-11-20: Simon Goldschmidt
+  * timers.c: patch #7329: tcp_timer_needed prototype was ifdef'ed out for
+    LWIP_TIMERS==0
+
   2010-11-20: Simon Goldschmidt
   * sockets.c: Fixed bug #31170: lwip_setsockopt() does not set socket number
 
index d28cb0843b19702798d9850278b6135df5967e1e..f0e92ccebe79e3b018c2287b0cd1a479d4f5776f 100644 (file)
@@ -42,6 +42,7 @@
 #include "lwip/opt.h"
 
 #include "lwip/timers.h"
+#include "lwip/tcp_impl.h"
 
 #if LWIP_TIMERS
 
@@ -49,7 +50,6 @@
 #include "lwip/memp.h"
 #include "lwip/tcpip.h"
 
-#include "lwip/tcp_impl.h"
 #include "lwip/ip_frag.h"
 #include "netif/etharp.h"
 #include "lwip/dhcp.h"