From: Christophe Jaillet Date: Fri, 6 Jan 2017 11:58:23 +0000 (+0000) Subject: Fix some tiny style issues (missing space) X-Git-Tag: 2.5.0-alpha~809 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fb209dbba2dfc74ee3c4a800b574e2f67d08915e;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/vhost.c b/server/vhost.c index 0de160366d7..5ad4efd3817 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; }