You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1998/06/09 23:02:14 UTC

cvs commit: apache-1.3/src/support ab.c

martin      98/06/09 14:02:14

  Modified:    src/support ab.c
  Log:
  Fix typos from zb era
  
  Revision  Changes    Path
  1.8       +4 -4      apache-1.3/src/support/ab.c
  
  Index: ab.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/support/ab.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -u -r1.7 -r1.8
  --- ab.c	1998/04/21 20:14:05	1.7
  +++ ab.c	1998/06/09 21:02:13	1.8
  @@ -231,7 +231,7 @@
       printf("Document Path:          %s\n", path);
       printf("Document Length:        %d bytes\n", doclen);
       printf("\n");
  -    printf("Concurency Level:       %d\n", concurrency);
  +    printf("Concurrency Level:      %d\n", concurrency);
       printf("Time taken for tests:   %d.%03d seconds\n",
              timetaken / 1000, timetaken % 1000);
       printf("Complete requests:      %d\n", done);
  @@ -241,12 +241,12 @@
                  err_conn, err_length, err_except);
       if (keepalive)
           printf("Keep-Alive requests:    %d\n", doneka);
  -    printf("Total transfered:       %d bytes\n", totalread);
  -    printf("HTML transfered:        %d bytes\n", totalbread);
  +    printf("Total transferred:      %d bytes\n", totalread);
  +    printf("HTML transferred:       %d bytes\n", totalbread);
   
       /* avoid divide by zero */
       if (timetaken) {
  -        printf("Requests per seconds:   %.2f\n", 1000 * (float) (done) / timetaken);
  +        printf("Requests per second:    %.2f\n", 1000 * (float) (done) / timetaken);
           printf("Transfer rate:          %.2f kb/s\n",
                  (float) (totalread) / timetaken);
       }