From 99b60bff39c7aa6afafe4889395d170d8e4bc8f5 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 12 Oct 2005 11:04:18 +0000 Subject: [PATCH] * support/ab.c (test): Increment count of started requests when a non-blocking connect completes; avoids case where more requests are made than intended. PR: 36966 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@314844 13f79535-47bb-0310-9956-ffa450edef68 --- support/ab.c | 1 + 1 file changed, 1 insertion(+) diff --git a/support/ab.c b/support/ab.c index 50c15476cf..b8c2d4192c 100644 --- a/support/ab.c +++ b/support/ab.c @@ -1681,6 +1681,7 @@ static void test(void) } else { c->state = STATE_CONNECTED; + started++; #ifdef USE_SSL if (c->ssl) ssl_proceed_handshake(c); -- 2.50.1