]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fold in other's patch. Had enough votes and closes PR 34512
authorJim Jagielski <jim@apache.org>
Wed, 24 Aug 2005 12:50:00 +0000 (12:50 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 24 Aug 2005 12:50:00 +0000 (12:50 +0000)
for 2.0 tree.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@239646 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/proxy/proxy_ftp.c

diff --git a/STATUS b/STATUS
index e5390b280d2c307c2fc5772d740f44db3c85aaaa..d547b268cdb73b6b2af35ff89d8cbba7e139b30d 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -195,12 +195,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
       Votes from before the integration branch:
           +1: jerenkrantz, wrowe (trivial, would even be cool in 1.3)
 
-     *) proxy FTP: Fix confusion about globbing characters which could lead
-        to getting a directory listing when a file was requested.  PR 34512.
-        2.1 patch was http://svn.apache.org/viewcvs?rev=179704&view=rev
-        2.0 version: http://people.apache.org/~trawick/179704-20.txt
-        +1: trawick, jorton, wrowe
-
      *) Add httxt2dbm for creating RewriteMap DBM Files.
         http://svn.apache.org/viewcvs.cgi?rev=209539&view=rev
         +1: pquerna, jorton, trawick
index 417008d5cae5402c07514c620c39d5fae6903352..4ddcfc020fbc7a8d871a17c6c2fb33c881da84f1 100644 (file)
@@ -92,7 +92,7 @@ static int ftp_check_globbingchars(const char *path)
     for ( ; *path; ++path) {
         if (*path == '\\')
            ++path;
-        if (path != '\0' && strchr(FTP_GLOBBING_CHARS, *path) != NULL)
+        if (*path != '\0' && strchr(FTP_GLOBBING_CHARS, *path) != NULL)
             return TRUE;
     }
     return FALSE;