Author: stsp
Date: Thu Jun 28 06:40:44 2012
New Revision: 1354831
URL: http://svn.apache.org/viewvc?rev=1354831&view=rev
Log:
* subversion/svn/log-cmd.c
(match_search_pattern): Match the pattern anywhere in a path name, not just
at the beginning of the path name.
Modified:
subversion/trunk/subversion/svn/log-cmd.c
Modified: subversion/trunk/subversion/svn/log-cmd.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/log-cmd.c?rev=1354831&r1=1354830&r2=1354831&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/log-cmd.c (original)
+++ subversion/trunk/subversion/svn/log-cmd.c Thu Jun 28 06:40:44 2012
@@ -181,7 +181,7 @@ match_search_pattern(const char *search_
{
const char *path = svn__apr_hash_index_key(hi);
- if (apr_fnmatch(search_pattern, path, flags) == APR_SUCCESS)
+ if (apr_fnmatch(pattern, path, flags) == APR_SUCCESS)
return TRUE;
}
}