diff options
Diffstat (limited to 'posix/fnmatch_loop.c')
-rw-r--r-- | posix/fnmatch_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index 80f6796b1e..a453aec835 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -788,7 +788,7 @@ FCT (pattern, string, no_leading_period, flags) return FNM_NOMATCH; /* It is a range. */ - if (cold <= fn && fn <= c) + if (cold <= fn && fn <= cend) goto matched; #endif |