Browse Source

Update.

* posix/fnmatch_loop.c: Recognize - at end of bracket expression
	correctly.
cvs/glibc-2-2-branch
Ulrich Drepper 25 years ago
parent
commit
be29c482f7
  1. 3
      ChangeLog
  2. 3
      posix/fnmatch_loop.c

3
ChangeLog

@ -1,5 +1,8 @@
2001-10-26 Ulrich Drepper <drepper@redhat.com>
* posix/fnmatch_loop.c: Recognize - at end of bracket expression
correctly.
* string/strxfrm.c [USE_IN_EXTENDED_LOCALE_MODEL]: Correctly get
nrules value.

3
posix/fnmatch_loop.c

@ -592,7 +592,8 @@ FCT (pattern, string, string_end, no_leading_period, flags)
/* We have to handling the symbols differently in
ranges since then the collation sequence is
important. */
is_range = *p == L('-') && p[1] != L('\0');
is_range = (*p == L('-') && p[1] != L('\0')
&& p[1] != L(']'));
if (!is_range && c == fn)
goto matched;

Loading…
Cancel
Save