diff options
Diffstat (limited to 'strings/apr_fnmatch.c')
-rw-r--r-- | strings/apr_fnmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_fnmatch.c b/strings/apr_fnmatch.c index 5d319133a..24aca4099 100644 --- a/strings/apr_fnmatch.c +++ b/strings/apr_fnmatch.c @@ -118,8 +118,8 @@ static APR_INLINE int fnmatch_ch(const char **pattern, const char **string, int leadingclosebrace:
/* Look at only well-formed range patterns;
* "x-]" is not allowed unless escaped ("x-\]")
+ * XXX: Fix for locale/MBCS character width
*/
- /* XXX: Fix for locale/MBCS character width */
if (((*pattern)[1] == '-') && ((*pattern)[2] != ']'))
{
startch = *pattern;
|