diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-05 02:51:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-05 02:51:34 +0000 |
commit | 817a51e296ac7335b8e161756dbc18012f86f4cd (patch) | |
tree | 39c28cb42cc4721efb28c5f4220ecf5b2188e0fc | |
parent | e2700a69f4af8f00c2dc963676a5af77aeb5e691 (diff) | |
download | glibc-817a51e296ac7335b8e161756dbc18012f86f4cd.tar.gz glibc-817a51e296ac7335b8e161756dbc18012f86f4cd.tar.xz glibc-817a51e296ac7335b8e161756dbc18012f86f4cd.zip |
Update.
2001-04-04 Ulrich Drepper <drepper@redhat.com> * posix/fnmatch_loop.c: Undefine NEW_PATTERN when it is not used anymore.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads_db/ChangeLog | 7 | ||||
-rw-r--r-- | posix/fnmatch_loop.c | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 61d9d7294b..1481481a37 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-04 Ulrich Drepper <drepper@redhat.com> + + * posix/fnmatch_loop.c: Undefine NEW_PATTERN when it is not used + anymore. + 2001-04-01 Andreas Jaeger <aj@suse.de> * sysdeps/generic/s_nextafter.c (NO_LONG_DOUBLE): Add nexttowardl diff --git a/linuxthreads_db/ChangeLog b/linuxthreads_db/ChangeLog index 3f19f7e2af..cdaab18f0c 100644 --- a/linuxthreads_db/ChangeLog +++ b/linuxthreads_db/ChangeLog @@ -1,3 +1,10 @@ +2001-04-04 Ulrich Drepper <drepper@redhat.com> + + * td_thr_getfpregs.c: If p_pid is zero use ps_getpid(). + * td_thr_getgregs.c: Likewise. + * td_thr_setfpregs.c: Likewise. + * td_thr_setgregs.c: Likewise. + 2001-03-20 Ulrich Drepper <drepper@redhat.com> * Makefile (libthread_db-routines): Add td_symbol_list. diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index fd25853c31..fb504c2b00 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -1075,6 +1075,7 @@ EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end, } assert (list != NULL); assert (p[-1] == L(')')); +#undef NEW_PATTERN switch (opt) { |