]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Revert stray modification in r1897336.
authorGraham Leggett <minfrin@apache.org>
Mon, 24 Jan 2022 11:20:55 +0000 (11:20 +0000)
committerGraham Leggett <minfrin@apache.org>
Mon, 24 Jan 2022 11:20:55 +0000 (11:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897408 13f79535-47bb-0310-9956-ffa450edef68

support/ab.c

index 4a300b0f2e1e43233dd1e077bcf729b8c9dc73a5..13a453f3185331e09f4c588534b32a61b45bea8f 100644 (file)
@@ -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;