mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 16:04:42 +02:00
[package] uhttpd: remove some dead code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32028 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f76b152928
commit
2498cec75c
@ -283,13 +283,7 @@ static bool uh_cgi_socket_cb(struct client *cl)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* child has been marked dead by timeout or child handler, bail out */
|
/* got EOF or read error from child */
|
||||||
if (false && cl->dead)
|
|
||||||
{
|
|
||||||
D("CGI: Child(%d) is marked dead, returning\n", state->cl->proc.pid);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((len == 0) ||
|
if ((len == 0) ||
|
||||||
((errno != EAGAIN) && (errno != EWOULDBLOCK) && (len == -1)))
|
((errno != EAGAIN) && (errno != EWOULDBLOCK) && (len == -1)))
|
||||||
{
|
{
|
||||||
|
@ -316,13 +316,7 @@ static bool uh_lua_socket_cb(struct client *cl)
|
|||||||
state->data_sent = true;
|
state->data_sent = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* child has been marked dead by timeout or child handler, bail out */
|
/* got EOF or read error from child */
|
||||||
if (false && cl->dead)
|
|
||||||
{
|
|
||||||
D("Lua: Child(%d) is marked dead, returning\n", state->cl->proc.pid);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((len == 0) ||
|
if ((len == 0) ||
|
||||||
((errno != EAGAIN) && (errno != EWOULDBLOCK) && (len == -1)))
|
((errno != EAGAIN) && (errno != EWOULDBLOCK) && (len == -1)))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user