
wrowe at apache
Jun 7, 2009, 10:40 PM
Views: 135
Permalink
|
|
svn commit: r782533 - /httpd/mod_ftp/trunk/modules/ftp/ftp_util.c
|
|
Author: wrowe Date: Mon Jun 8 05:40:33 2009 New Revision: 782533 URL: http://svn.apache.org/viewvc?rev=782533&view=rev Log: ftp_internal had nothing to do with this, however. Revert a bit of r782581 for testing in my tree. 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=782533&r1=782532&r2=782533&view=diff ============================================================================== --- httpd/mod_ftp/trunk/modules/ftp/ftp_util.c (original) +++ httpd/mod_ftp/trunk/modules/ftp/ftp_util.c Mon Jun 8 05:40:33 2009 @@ -182,7 +182,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
|