]> granicus.if.org Git - apache/commitdiff
* The nitpicker of the space police. No functional change.
authorRuediger Pluem <rpluem@apache.org>
Wed, 12 Nov 2008 20:44:53 +0000 (20:44 +0000)
committerRuediger Pluem <rpluem@apache.org>
Wed, 12 Nov 2008 20:44:53 +0000 (20:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@713504 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_dir.c

index 622dc5572f48293ac36aa83b46b3db79955f138b..d1559a0d37f505feaaa798274af88dbd4138de33 100644 (file)
@@ -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;
             }