
wrowe at apache
Jun 7, 2009, 9:50 PM
Views: 177
Permalink
|
|
svn commit: r782522 - /httpd/mod_ftp/trunk/modules/ftp/ftp_util.c
|
|
Author: wrowe Date: Mon Jun 8 04:50:56 2009 New Revision: 782522 URL: http://svn.apache.org/viewvc?rev=782522&view=rev Log: Revert one delta from r779989 to disambiguate this change from the httpd 2.2 backwards compatibility work. No wonder JimJag and I were mutually confused(!) Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_util.c Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_util.c URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_util.c?rev=782522&r1=782521&r2=782522&view=diff ============================================================================== --- httpd/mod_ftp/trunk/modules/ftp/ftp_util.c (original) +++ httpd/mod_ftp/trunk/modules/ftp/ftp_util.c Mon Jun 8 04:50:56 2009 @@ -186,7 +186,7 @@ #endif if (pattern && *pattern && - (apr_fnmatch(pattern, name, APR_FNM_PATHNAME) != APR_SUCCESS)) { + (apr_fnmatch(pattern, name, APR_FNM_PATHNAME | APR_FNM_PERIOD) != APR_SUCCESS)) { #ifdef FTP_DEBUG ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "no match"); #endif
|