summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-05-01 15:56:26 +0000
committerJeff Trawick <trawick@apache.org>2000-05-01 15:56:26 +0000
commit607d91d897ec80312bd74f2bf38d3b4596a94d89 (patch)
tree6275cdb168d7a4fdd58a1ea161a6d58bbc13a181
parent624a66585b6caadcfb5eef5c46ff6f94ce3a14cd (diff)
downloadhttpd-607d91d897ec80312bd74f2bf38d3b4596a94d89.tar.gz
add missing ';' in non-ASCII path
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85120 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--support/ab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/ab.c b/support/ab.c
index 4361b0de50..0a3cae4ea7 100644
--- a/support/ab.c
+++ b/support/ab.c
@@ -838,14 +838,14 @@ static void test(void)
static void copyright(void)
{
if (!use_html) {
- printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.11 $> apache-2.0");
+ printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.12 $> apache-2.0");
printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
printf("Copyright (c) 1998-2000 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-2.0<br>\n", VERSION, "$Revision: 1.11 $");
+ printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-2.0<br>\n", VERSION, "$Revision: 1.12 $");
printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
printf(" Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/<br>\n");
printf("</p>\n<p>\n");
@@ -970,7 +970,7 @@ int main(int argc, char **argv)
fprintf(stderr, "ap_xlate_open(to ASCII)->%d\n", status);
exit(1);
}
- status = ap_xlate_open(&from_ascii, APR_DEFAULT_CHARSET, "ISO8859-1", cntxt)
+ status = ap_xlate_open(&from_ascii, APR_DEFAULT_CHARSET, "ISO8859-1", cntxt);
if (status) {
fprintf(stderr, "ap_xlate_open(from ASCII)->%d\n", status);