1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

avoid vim autoindent :)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111520 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2004-12-10 16:49:16 +00:00
parent 07e0b89c3b
commit bfb4758bf3

View File

@@ -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);