From 362b77f64b6b7078d4cfadff37088b829fd59014 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Wed, 12 Nov 2008 20:44:53 +0000 Subject: [PATCH] * The nitpicker of the space police. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@713504 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_dir.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/mappers/mod_dir.c b/modules/mappers/mod_dir.c index 622dc5572f..d1559a0d37 100644 --- a/modules/mappers/mod_dir.c +++ b/modules/mappers/mod_dir.c @@ -49,18 +49,18 @@ static const char *add_index(cmd_parms *cmd, void *dummy, const char *arg) dir_config_rec *d = dummy; const char *t, *w; int count = 0; - + if (!d->index_names) { d->index_names = apr_array_make(cmd->pool, 2, sizeof(char *)); } t = arg; - while ((w = ap_getword_conf(cmd->pool, &t)) && w[0]) { - if (count == 0 && !strcasecmp(w, "disabled")) { + while ((w = ap_getword_conf(cmd->pool, &t)) && w[0]) { + if (count == 0 && !strcasecmp(w, "disabled")) { /* peek to see if "disabled" is first in a series of arguments */ const char *tt = t; const char *ww = ap_getword_conf(cmd->pool, &tt); - if (ww == NULL || !ww[0]) { + if (ww == NULL || !ww[0]) { /* "disabled" is first, and alone */ break; } -- 2.50.1