You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2018/05/24 20:42:44 UTC

svn commit: r1832200 - /httpd/httpd/trunk/server/config.c

Author: jailletc36
Date: Thu May 24 20:42:43 2018
New Revision: 1832200

URL: http://svn.apache.org/viewvc?rev=1832200&view=rev
Log:
Axe some dead code.
 
See PR 60086.

Modified:
    httpd/httpd/trunk/server/config.c

Modified: httpd/httpd/trunk/server/config.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/config.c?rev=1832200&r1=1832199&r2=1832200&view=diff
==============================================================================
--- httpd/httpd/trunk/server/config.c (original)
+++ httpd/httpd/trunk/server/config.c Thu May 24 20:42:43 2018
@@ -2051,7 +2051,7 @@ static const char *process_resource_conf
             /* If matching internal to path, and we happen to match something
              * other than a directory, skip it
              */
-            if (rest && (rv == APR_SUCCESS) && (dirent.filetype != APR_DIR)) {
+            if (rest && (dirent.filetype != APR_DIR)) {
                 continue;
             }
             fnew = (fnames *) apr_array_push(candidates);