]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix spelling of 'concurrent'.
authorSascha Schumann <sascha@apache.org>
Sun, 20 May 2001 12:43:36 +0000 (12:43 +0000)
committerSascha Schumann <sascha@apache.org>
Sun, 20 May 2001 12:43:36 +0000 (12:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89175 13f79535-47bb-0310-9956-ffa450edef68

src/support/ab.c

index 4ccd2c50ebcda94680b7df9e3aec2521556f82a6..c88858cea9c346ad1126d490e482e9db9e489ec3 100644 (file)
@@ -520,7 +520,7 @@ static void output_results(void)
     if (timetaken) {
        printf("Requests per second:    %.2f [#/sec] (mean)\n", 1000 * (float) (done) / timetaken);
        printf("Time per request:       %.2f [ms] (mean)\n", concurrency * timetaken / (float) done);
-       printf("Time per request:       %.2f [ms] (mean, across all concurent requests)\n", timetaken / (float) done);
+       printf("Time per request:       %.2f [ms] (mean, across all concurrent requests)\n", timetaken / (float) done);
        printf("Transfer rate:          %.2f [Kbytes/sec] received\n",
               (float) (totalread) / timetaken);
        if (posting > 0) {
@@ -1323,14 +1323,14 @@ static void test(void)
 static void copyright(void)
 {
     if (!use_html) {
-       printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.51 $> apache-1.3");
+       printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.52 $> 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.51 $");
+       printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-1.3<br>\n", VERSION, "$Revision: 1.52 $");
        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");