Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 87649 invoked by uid 500); 1 May 2002 16:59:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 87637 invoked by uid 500); 1 May 2002 16:59:53 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 1 May 2002 16:59:52 -0000 Message-ID: <20020501165952.94601.qmail@icarus.apache.org> From: trawick@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/support ab.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-1.3
\n", VERSION, "$Revision: 1.61 $"); + printf(" This is ApacheBench, Version %s <%s> apache-1.3
\n", VERSION, "$Revision: 1.62 $"); 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

\n");