From: Dirk-Willem van Gulik Date: Tue, 3 Apr 2001 01:41:51 +0000 (+0000) Subject: Doing last minute alphabettically sorting things to look nice is not always a good... X-Git-Tag: 2.0.16~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f6b89bc8e320da03ee0b4af67dbb479687f120b;p=thirdparty%2Fapache%2Fhttpd.git Doing last minute alphabettically sorting things to look nice is not always a good idea. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88677 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index d65958f9138..a79ce3005f5 100644 --- a/support/ab.c +++ b/support/ab.c @@ -594,18 +594,18 @@ static void output_results(void) meand = stats[requests / 2].time - stats[requests / 2].ctime; qsort(stats, requests, sizeof(struct data), - (int (*) (const void *, const void *)) comprando); + (int (*) (const void *, const void *)) compwait); if ((requests > 1) && (requests % 2)) - meantot = (stats[requests / 2].time + stats[requests / 2 + 1].time) / 2; + meanwait = (stats[requests / 2].waittime + stats[requests / 2 + 1].waittime) / 2; else - meantot = stats[requests / 2].time; + meanwait = stats[requests / 2].waittime; qsort(stats, requests, sizeof(struct data), - (int (*) (const void *, const void *)) compwait); + (int (*) (const void *, const void *)) comprando); if ((requests > 1) && (requests % 2)) - meanwait = (stats[requests / 2].waittime + stats[requests / 2 + 1].waittime) / 2; + meantot = (stats[requests / 2].time + stats[requests / 2 + 1].time) / 2; else - meanwait = stats[requests / 2].waittime; + meantot = stats[requests / 2].time; printf("\nConnnection Times (ms)\n"); @@ -1277,14 +1277,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.66 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.67 $> 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.66 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.67 $"); 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");