summaryrefslogtreecommitdiff
path: root/nuttx/netutils/webserver/httpd.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-20 21:55:06 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-20 21:55:06 +0000
commitab97d30ecb919fdc582b287f6ed195f56f8b940a (patch)
tree15db36e30fe30075661d8ba3b420f56af529a68d /nuttx/netutils/webserver/httpd.c
parent78dd0de872d9bef518f3ef395b4913197e1b2077 (diff)
downloadpx4-nuttx-ab97d30ecb919fdc582b287f6ed195f56f8b940a.tar.gz
px4-nuttx-ab97d30ecb919fdc582b287f6ed195f56f8b940a.tar.bz2
px4-nuttx-ab97d30ecb919fdc582b287f6ed195f56f8b940a.zip
Fix TCP list managment bug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@392 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/netutils/webserver/httpd.c')
-rw-r--r--nuttx/netutils/webserver/httpd.c4
1 files changed, 2 insertions, 2 deletions
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 */