You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/05/01 18:59:52 UTC

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

trawick     02/05/01 09:59:52

  Modified:    src/support ab.c
  Log:
  provide a missing %s corresponding to colonport
  (the bug was introduced in the current development cycle, so
  no CHANGES entry is necessary)
  
  Revision  Changes    Path
  1.62      +3 -3      apache-1.3/src/support/ab.c
  
  Index: ab.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/support/ab.c,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- ab.c	1 Apr 2002 04:24:48 -0000	1.61
  +++ ab.c	1 May 2002 16:59:52 -0000	1.62
  @@ -1262,7 +1262,7 @@
   		"POST %s HTTP/1.0\r\n"
   		"User-Agent: ApacheBench/%s\r\n"
   		"%s" "%s" "%s"
  -		"Host: %s\r\n"
  +		"Host: %s%s\r\n"
   		"Accept: */*\r\n"
   		"Content-length: %d\r\n"
   		"Content-type: %s\r\n"
  @@ -1346,14 +1346,14 @@
   static void copyright(void)
   {
       if (!use_html) {
  -	printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.61 $> apache-1.3");
  +	printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.62 $> apache-1.3");
   	printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
   	printf("Copyright (c) 1998-2002 The Apache Software Foundation, 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.61 $");
  +	printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-1.3<br>\n", VERSION, "$Revision: 1.62 $");
   	printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
   	printf(" Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/<br>\n");
   	printf("</p>\n<p>\n");