From: Jeff Trawick Date: Mon, 2 Apr 2001 17:58:23 +0000 (+0000) Subject: keep ab from dividing by zero when heartbeatres is zero X-Git-Tag: 2.0.16~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f31fc4448c134cd0ad4e0a5e58f92d0036c6ebcc;p=apache keep ab from dividing by zero when heartbeatres is zero git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88651 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index e38a7ecf14..6f5247b42f 100644 --- a/support/ab.c +++ b/support/ab.c @@ -889,7 +889,7 @@ static void close_connection(struct connection * c) /* save out time */ if (done < requests) { struct data s; - if ((done) && (!(done % heartbeatres))) { + if ((done) && heartbeatres && !(done % heartbeatres)) { fprintf(stderr, "Completed %ld requests\n", done); fflush(stderr); } @@ -1278,14 +1278,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.62 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.63 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.62 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.63 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
\n"); printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/
\n"); printf("

\n

\n");