diff options
author | Graham Leggett <minfrin@apache.org> | 2022-01-24 12:20:55 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2022-01-24 12:20:55 +0100 |
commit | 6fe2acda099be34e7317072e4e3df10697b85dba (patch) | |
tree | 3679874fcb30692e6a1f56da320156c6bc41b231 | |
parent | Add missing log message tag. (diff) | |
download | apache2-6fe2acda099be34e7317072e4e3df10697b85dba.tar.xz apache2-6fe2acda099be34e7317072e4e3df10697b85dba.zip |
Revert stray modification in r1897336.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897408 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | support/ab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/ab.c b/support/ab.c index 4a300b0f2e..13a453f318 100644 --- a/support/ab.c +++ b/support/ab.c @@ -1434,7 +1434,7 @@ static void start_connect(struct connection * c) } #endif 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); c->rwrite = 0; return; |