From: Jeff Trawick Date: Wed, 1 May 2002 16:59:52 +0000 (+0000) Subject: provide a missing %s corresponding to colonport X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ac29915723feaea4a7248bfe1d367989adead8a;p=thirdparty%2Fapache%2Fhttpd.git provide a missing %s corresponding to colonport (the bug was introduced in the current development cycle, so no CHANGES entry is necessary) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94894 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/support/ab.c b/src/support/ab.c index 54acbeaffff..a7b34eecd7e 100644 --- a/src/support/ab.c +++ b/src/support/ab.c @@ -1262,7 +1262,7 @@ static void test(void) "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 test(void) 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");