From: Jim Jagielski Date: Fri, 10 Dec 2004 16:49:16 +0000 (+0000) Subject: avoid vim autoindent :) X-Git-Tag: 2.1.3~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfb4758bf3116844c507f167defcc993c5802fec;p=thirdparty%2Fapache%2Fhttpd.git avoid vim autoindent :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111520 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/htcacheclean.c b/support/htcacheclean.c index d505ecb777c..cca2889a3d4 100644 --- a/support/htcacheclean.c +++ b/support/htcacheclean.c @@ -349,8 +349,8 @@ static int process_dir(char *path, apr_pool_t *pool) while (apr_dir_read(&info, 0, dir) == APR_SUCCESS && !interrupted) { if (!strcmp(info.name, ".") || !strcmp(info.name, "..")) { - continue; - } + continue; + } d = apr_pcalloc(p, sizeof(DIRENTRY)); d->basename = apr_pstrcat(p, path, "/", info.name, NULL); APR_RING_INSERT_TAIL(&anchor, d, _direntry, link);