]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Doing last minute alphabettically sorting things to look nice is not always a good...
authorDirk-Willem van Gulik <dirkx@apache.org>
Tue, 3 Apr 2001 01:43:09 +0000 (01:43 +0000)
committerDirk-Willem van Gulik <dirkx@apache.org>
Tue, 3 Apr 2001 01:43:09 +0000 (01:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88678 13f79535-47bb-0310-9956-ffa450edef68

src/support/ab.c

index 4a616fc9527530368b5c5a4d9d14714518bd7884..7cd7c88489b7f8155f1cff8f25c559a702fcac05 100644 (file)
@@ -627,18 +627,19 @@ 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");
 
@@ -1322,14 +1323,14 @@ static void test(void)
 static void copyright(void)
 {
     if (!use_html) {
-       printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.47 $> apache-1.3");
+       printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.48 $> apache-1.3");
        printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
        printf("Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/\n");
        printf("\n");
     }
     else {
        printf("<p>\n");
-       printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-1.3<br>\n", VERSION, "$Revision: 1.47 $");
+       printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-1.3<br>\n", VERSION, "$Revision: 1.48 $");
        printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
        printf(" Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/<br>\n");
        printf("</p>\n<p>\n");