martin 99/10/27 15:30:19
Modified: src/support ab.c Log: Add CVS Revision number to ab.c to allow for detecting changes which were not marked by a version number update. Additionally, display base repository name (apache-1.3) Revision Changes Path 1.35 +3 -3 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.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ab.c 1999/10/27 07:12:44 1.34 +++ ab.c 1999/10/27 22:30:16 1.35 @@ -97,7 +97,7 @@ * only an issue for loopback usage */ -#define VERSION "1.3b" +#define VERSION "1.3c" /* -------------------------------------------------------------------- */ @@ -867,14 +867,14 @@ static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", VERSION); + printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.35 $> apache-1.3"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/\n"); printf("\n"); } else { printf("<p>\n"); - printf(" This is ApacheBench, Version %s<br>\n", VERSION); + printf(" This is ApacheBench, Version %s <i><%s></i> apache-1.3<br>\n", VERSION, "$Revision: 1.35 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n"); printf(" Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/<br>\n"); printf("</p>\n<p>\n");