From: Bill Stoddard Date: Sun, 17 Mar 2002 22:20:50 +0000 (+0000) Subject: Fix some formatting X-Git-Tag: CHANGES~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9443a2ac8e80a0173a93d502c64073fa89010781;p=apache Fix some formatting git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93985 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_dir.c b/modules/mappers/mod_dir.c index 08f43bcaa7..bfff24789a 100644 --- a/modules/mappers/mod_dir.c +++ b/modules/mappers/mod_dir.c @@ -126,7 +126,7 @@ static int fixup_dir(request_rec *r) /* only handle requests against directories */ if (r->finfo.filetype != APR_DIR) { - return DECLINED; + return DECLINED; } /* In case mod_mime wasn't present, and no handler was assigned. */ @@ -170,16 +170,16 @@ static int fixup_dir(request_rec *r) } d = (dir_config_rec *) ap_get_module_config(r->per_dir_config, - &dir_module); + &dir_module); if (d->index_names) { - names_ptr = (char **)d->index_names->elts; - num_names = d->index_names->nelts; + names_ptr = (char **)d->index_names->elts; + num_names = d->index_names->nelts; } else { - dummy_ptr[0] = AP_DEFAULT_INDEX; - names_ptr = dummy_ptr; - num_names = 1; + dummy_ptr[0] = AP_DEFAULT_INDEX; + names_ptr = dummy_ptr; + num_names = 1; } for (; num_names; ++names_ptr, --num_names) {