From: Eric Covener Date: Wed, 12 Nov 2008 20:10:29 +0000 (+0000) Subject: temporary dbg message and unnecessary continue, per rpluem review X-Git-Tag: 2.3.0~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=316120949eb0df3e9f69c59748d5412ab3337e9c;p=thirdparty%2Fapache%2Fhttpd.git temporary dbg message and unnecessary continue, per rpluem review git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@713487 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_dir.c b/modules/mappers/mod_dir.c index 8dcb0194d72..622dc5572f4 100644 --- a/modules/mappers/mod_dir.c +++ b/modules/mappers/mod_dir.c @@ -59,12 +59,10 @@ static const char *add_index(cmd_parms *cmd, void *dummy, const char *arg) 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;