diff options
author | Andreas Schwab <schwab@suse.de> | 2020-09-16 12:41:14 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2020-09-16 14:45:10 +0200 |
commit | a140ff9162f353e804d6a8c83c8f3c18511850dd (patch) | |
tree | a2e8b02861633aa706fc07588926b75f9835dcd2 /posix/Makefile | |
parent | 4b564f347fdcd021dbb6c1ada98a18249d9e888a (diff) | |
download | glibc-a140ff9162f353e804d6a8c83c8f3c18511850dd.tar.gz glibc-a140ff9162f353e804d6a8c83c8f3c18511850dd.tar.xz glibc-a140ff9162f353e804d6a8c83c8f3c18511850dd.zip |
Fix handling of collating symbols in fnmatch (bug 26620)
The variable idx contains the index into the extra array, whereas wextra points into the extra array at this index, containing the length of the following collating sequence in the wide character representation.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index 605ddbade8..83c4d57231 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -96,7 +96,7 @@ tests := test-errno tstgetopt testfnm runtests runptests \ bug-getopt5 tst-getopt_long1 bug-regex34 bug-regex35 \ tst-pathconf tst-rxspencer-no-utf8 \ tst-fnmatch3 bug-regex36 \ - tst-fnmatch4 tst-fnmatch5 \ + tst-fnmatch4 tst-fnmatch5 tst-fnmatch6 \ tst-posix_spawn-fd tst-posix_spawn-setsid \ tst-posix_fadvise tst-posix_fadvise64 \ tst-sysconf-empty-chroot tst-glob_symlinks tst-fexecve \ @@ -197,6 +197,7 @@ $(objpfx)bug-regex35.out: $(gen-locales) $(objpfx)tst-fnmatch.out: $(gen-locales) $(objpfx)tst-fnmatch4.out: $(gen-locales) $(objpfx)tst-fnmatch5.out: $(gen-locales) +$(objpfx)tst-fnmatch6.out: $(gen-locales) $(objpfx)tst-regex.out: $(gen-locales) $(objpfx)tst-regex2.out: $(gen-locales) $(objpfx)tst-regexloc.out: $(gen-locales) |