]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix some tiny style issues (missing space)
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 6 Jan 2017 11:58:23 +0000 (11:58 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 6 Jan 2017 11:58:23 +0000 (11:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1777594 13f79535-47bb-0310-9956-ffa450edef68

server/vhost.c

index 0de160366d755c7013cb57c7548bf1b67021fb54..5ad4efd3817de1f117d70ceaf28c78de2251d031 100644 (file)
@@ -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;
         }