mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Update.
* posix/fnmatch_loop.c: Handle ranges outside glibc correctly.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
2001-02-21 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/fnmatch_loop.c: Handle ranges outside glibc correctly.
|
||||
|
||||
* sysdeps/generic/ftime.c: Include <time.h>.
|
||||
|
||||
* configure.in: Don't check for libgd if user set --without-gd.
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user