diff options
author | André Malo <nd@apache.org> | 2005-09-19 18:05:49 +0000 |
---|---|---|
committer | André Malo <nd@apache.org> | 2005-09-19 18:05:49 +0000 |
commit | 0eca20652f9990c781775ef9dfef3ed3e67aaf49 (patch) | |
tree | 948bf5c775c1da166c6ba6f1f0b8ebf524149e3f /modules/proxy | |
parent | 64f60175ae107e8360786e7525421b4c1860a771 (diff) | |
download | httpd-0eca20652f9990c781775ef9dfef3ed3e67aaf49.tar.gz |
mod_version_for_2.0.x branch:
* Merge 239611 to 290201 from branches/2.0.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/mod_version_for_2.0.x@290223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy')
-rw-r--r-- | modules/proxy/proxy_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/proxy_ftp.c b/modules/proxy/proxy_ftp.c index 417008d5ca..4ddcfc020f 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; |