mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
Fixes for use outside glibc.
This commit is contained in:
parent
9881cbf80a
commit
c1ac11df76
@ -415,10 +415,11 @@ FCT (pattern, string, no_leading_period, flags)
|
||||
return FNM_NOMATCH;
|
||||
else
|
||||
{
|
||||
int is_seqval = 0;
|
||||
int is_range = 0;
|
||||
|
||||
#ifdef _LIBC
|
||||
int is_seqval = 0;
|
||||
|
||||
if (c == L('[') && *p == L('.'))
|
||||
{
|
||||
uint32_t nrules =
|
||||
@ -850,7 +851,7 @@ FCT (pattern, string, no_leading_period, flags)
|
||||
return FNM_NOMATCH;
|
||||
|
||||
/* It is a range. */
|
||||
if (cold <= fc && fc <= c)
|
||||
if (cold <= fn && fn <= c)
|
||||
goto matched;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user