From fe66fa654030197b99cef3003b410fff88141487 Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Fri, 9 Sep 2011 22:28:01 +0200 Subject: [PATCH] Fixed typo: TCP_SNDQUEUELOWAT must be less than TCP_SND_QUEUELEN (as checked in init.c), not greater --- src/include/lwip/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 941e948f..47589396 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -972,7 +972,7 @@ #endif /** - * TCP_SNDQUEUELOWAT: TCP writable bufs (pbuf count). This must be grater + * TCP_SNDQUEUELOWAT: TCP writable bufs (pbuf count). This must be less * than TCP_SND_QUEUELEN. If the number of pbufs queued on a pcb drops below * this number, select returns writable (combined with TCP_SNDLOWAT). */