From: Jim Jagielski Date: Wed, 24 Aug 2005 12:50:00 +0000 (+0000) Subject: Fold in other's patch. Had enough votes and closes PR 34512 X-Git-Tag: 2.0.55~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=877ae7552f8f31947dd4586504e4aadaccaeb342;p=thirdparty%2Fapache%2Fhttpd.git Fold in other's patch. Had enough votes and closes PR 34512 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 --- diff --git a/STATUS b/STATUS index e5390b280d2..d547b268cdb 100644 --- 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 diff --git a/modules/proxy/proxy_ftp.c b/modules/proxy/proxy_ftp.c index 417008d5cae..4ddcfc020fb 100644 --- a/modules/proxy/proxy_ftp.c +++ b/modules/proxy/proxy_ftp.c @@ -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;