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

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

Author: covener
Date: Wed Nov 12 12:10:29 2008
New Revision: 713487

URL: http://svn.apache.org/viewvc?rev=713487&view=rev
Log:
temporary dbg message and unnecessary continue, per rpluem review

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=713487&r1=713486&r2=713487&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_dir.c (original)
+++ httpd/httpd/trunk/modules/mappers/mod_dir.c Wed Nov 12 12:10:29 2008
@@ -59,12 +59,10 @@
         if (count == 0 && !strcasecmp(w, "disabled")) { 
             /* peek to see if "disabled" is first in a series of arguments */
             const char *tt = t;
-            fprintf(stderr, "t:'%s'\n", t);
             const char *ww = ap_getword_conf(cmd->pool, &tt);
             if (ww == NULL || !ww[0]) { 
                /* "disabled" is first, and alone */
-                
-               continue;
+               break;
             }
         }
         *(const char **)apr_array_push(d->index_names) = w;