From: Jeff Trawick Date: Tue, 21 Nov 2000 21:48:48 +0000 (+0000) Subject: Don't use APR_INET6 unless APR_HAVE_INET6 is defined. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=581635e28f1f71623878ab3852b68cd49fc7cdb1;p=apache Don't use APR_INET6 unless APR_HAVE_INET6 is defined. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87056 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index 4aa5158080..668b87384d 100644 --- a/support/ab.c +++ b/support/ab.c @@ -886,14 +886,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.35 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.36 $> 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("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.35 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.36 $"); 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

\n"); @@ -942,6 +942,7 @@ static int parse_url(char *url) if (strlen(url) > 7 && strncmp(url, "http://", 7) == 0) url += 7; h = url; +#if APR_HAVE_INET6 if (*url == '[') { /* RFC 2732 format */ h = url + 1; url = strchr(h, ']'); @@ -959,6 +960,7 @@ static int parse_url(char *url) */ family = APR_INET6; } +#endif /* APR_HAVE_INET6 */ if ((cp = strchr(url, ':')) != NULL) { *cp++ = '\0'; p = cp; @@ -969,10 +971,13 @@ static int parse_url(char *url) strcpy(path, cp); *cp = '\0'; strcpy(hostname, h); +#if APR_HAVE_INET6 if (family == APR_INET6) { host_field = apr_psprintf(cntxt, "[%s]",hostname); } - else { + else +#endif /* APR_HAVE_INET6 */ + { host_field = hostname; } if (p != NULL)