mirror of
https://github.com/apache/httpd.git
synced 2025-08-03 16:33:59 +00:00
Revert stray modification in r1897336.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897408 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1434,7 +1434,7 @@ static void start_connect(struct connection * c)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if ((rv = apr_socket_connect(c->aprsock, destsa)) != APR_SUCCESS) {
|
if ((rv = apr_socket_connect(c->aprsock, destsa)) != APR_SUCCESS) {
|
||||||
if (APR_STATUS_IS_EINPROGRESS(rv) || APR_STATUS_IS_EINTR(rv)) {
|
if (APR_STATUS_IS_EINPROGRESS(rv)) {
|
||||||
set_conn_state(c, STATE_CONNECTING);
|
set_conn_state(c, STATE_CONNECTING);
|
||||||
c->rwrite = 0;
|
c->rwrite = 0;
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user