diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | localedata/ChangeLog | 1 | ||||
-rw-r--r-- | manual/string.texi | 4 | ||||
-rw-r--r-- | posix/fnmatch.c | 3 |
4 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,8 @@ +1998-12-12 Geoff Keating <geoffk@ozemail.com.au> + + * posix/fnmatch.c (fnmatch): Arguments to FOLD must not have + side-effects. + 1998-12-12 Ulrich Drepper <drepper@cygnus.com> * iconvdata/iso-8859-11.h: ISO 8859-11 conversion data. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 023029b..a15d6de 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,5 +1,6 @@ 1998-12-12 Ulrich Drepper <drepper@cygnus.com> + * charmaps/ISO-8859-13: New file. * charmaps/ISO-8859-14: New file. * charmaps/ISO-8859-15: New file. diff --git a/manual/string.texi b/manual/string.texi index c6bca05..ae4ba65 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -800,8 +800,8 @@ void sort_strings (char **array, int nstrings) @{ /* @r{Sort @code{temp_array} by comparing the strings.} */ - qsort (array, sizeof (char *), - nstrings, compare_elements); + qsort (array, nstrings, + sizeof (char *), compare_elements); @} @end smallexample diff --git a/posix/fnmatch.c b/posix/fnmatch.c index 2d6f6af..6d48be3 100644 --- a/posix/fnmatch.c +++ b/posix/fnmatch.c @@ -245,7 +245,8 @@ fnmatch (pattern, string, flags) { if (*p == '\0') return FNM_NOMATCH; - c = FOLD (*p++); + c = FOLD (*p); + ++p; if (c == fn) goto matched; |