You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2008/11/12 21:44:54 UTC

svn commit: r713504 - /httpd/httpd/trunk/modules/mappers/mod_dir.c

Author: rpluem
Date: Wed Nov 12 12:44:53 2008
New Revision: 713504

URL: http://svn.apache.org/viewvc?rev=713504&view=rev
Log:
* The nitpicker of the space police. No functional change.

Modified:
    httpd/httpd/trunk/modules/mappers/mod_dir.c

Modified: httpd/httpd/trunk/modules/mappers/mod_dir.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_dir.c?rev=713504&r1=713503&r2=713504&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_dir.c (original)
+++ httpd/httpd/trunk/modules/mappers/mod_dir.c Wed Nov 12 12:44:53 2008
@@ -49,18 +49,18 @@
     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;
             }