Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 20151 invoked by uid 500); 19 Jul 2001 16:42:09 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 20133 invoked by uid 500); 19 Jul 2001 16:42:09 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 19 Jul 2001 16:40:42 -0000 Message-ID: <20010719164042.91680.qmail@icarus.apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/support ab.c X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N wrowe 01/07/19 09:40:42 Modified: support ab.c Log: A smart answer to users attempting the -s arg to ab. Revision Changes Path 1.79 +6 -3 httpd-2.0/support/ab.c Index: ab.c =================================================================== RCS file: /home/cvs/httpd-2.0/support/ab.c,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- ab.c 2001/07/19 12:43:22 1.78 +++ ab.c 2001/07/19 16:40:42 1.79 @@ -1298,14 +1298,14 @@ static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.78 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.79 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.78 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.79 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
\n"); printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/
\n"); printf("

\n

\n"); @@ -1497,10 +1497,13 @@ #endif ,&c, &optarg)) == APR_SUCCESS) { switch (c) { -#if USE_SSL case 's': +#if USE_SSL ssl = 1; break; +#else + fprintf(stderr, "SSL not compiled in; no https support\n"); + exit(1); #endif case 'n': requests = atoi(optarg);