diff options
Diffstat (limited to 'usr/src/lib/libc/port/locale/fnmatch.c')
-rw-r--r-- | usr/src/lib/libc/port/locale/fnmatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/lib/libc/port/locale/fnmatch.c b/usr/src/lib/libc/port/locale/fnmatch.c index 24cc3f7b4e..c218812bf2 100644 --- a/usr/src/lib/libc/port/locale/fnmatch.c +++ b/usr/src/lib/libc/port/locale/fnmatch.c @@ -277,10 +277,10 @@ rangematch(pattern, test, flags, newp, patmbs) if (flags & FNM_IGNORECASE) c2 = towlower(c2); - if (__collate_load_error ? + if (_collate_load_error ? c <= test && test <= c2 : - __collate_range_cmp(c, test) <= 0 && - __collate_range_cmp(test, c2) <= 0) + _collate_range_cmp(c, test) <= 0 && + _collate_range_cmp(test, c2) <= 0) ok = 1; } else if (c == test) ok = 1; |