summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2017-01-06 11:58:23 +0000
committerChristophe Jaillet <jailletc36@apache.org>2017-01-06 11:58:23 +0000
commitfb209dbba2dfc74ee3c4a800b574e2f67d08915e (patch)
treee6bfdf690008edb0b2e7ad9691957d4bcf3afef0
parent9adefaa2cfb53fb7673a8e700fead334a8648c63 (diff)
downloadhttpd-fb209dbba2dfc74ee3c4a800b574e2f67d08915e.tar.gz
Fix some tiny style issues (missing space)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1777594 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/vhost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/vhost.c b/server/vhost.c
index 0de160366d..5ad4efd381 100644
--- a/server/vhost.c
+++ b/server/vhost.c
@@ -907,7 +907,7 @@ static int matches_aliases(server_rec *s, const char *host)
if (names) {
char **name = (char **) names->elts;
for (i = 0; i < names->nelts; ++i) {
- if(!name[i]) continue;
+ if (!name[i]) continue;
if (!strcasecmp(host, name[i]))
return 1;
}
@@ -916,7 +916,7 @@ static int matches_aliases(server_rec *s, const char *host)
if (names) {
char **name = (char **) names->elts;
for (i = 0; i < names->nelts; ++i) {
- if(!name[i]) continue;
+ if (!name[i]) continue;
if (!ap_strcasecmp_match(host, name[i]))
return 1;
}