From ab97d30ecb919fdc582b287f6ed195f56f8b940a Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 20 Nov 2007 21:55:06 +0000 Subject: Fix TCP list managment bug git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@392 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/netutils/webserver/httpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/netutils/webserver/httpd.c') diff --git a/nuttx/netutils/webserver/httpd.c b/nuttx/netutils/webserver/httpd.c index 4564a7652..1f360c1ab 100644 --- a/nuttx/netutils/webserver/httpd.c +++ b/nuttx/netutils/webserver/httpd.c @@ -469,7 +469,7 @@ static void *httpd_handler(void *arg) if (pstate) { /* Loop processing each HTTP command */ - do +// do { /* Re-initialize the thread state structure */ @@ -480,7 +480,7 @@ static void *httpd_handler(void *arg) ret = httpd_cmd(pstate); } - while (ret == OK); +// while (ret == OK); /* End of command processing -- Clean up and exit */ -- cgit v1.2.3