mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
Update.
* posix/fnmatch_loop.c: Remove incorrect reverse condition in [. .] matching. Patch by Isamu Hasegawa <isamu@yamato.ibm.com>. 2001-01-31 Mark Kettenis <kettenis@gnu.org> * misc/sys/select.h: Include <bits/time.h> instead of <sys/time.h> to get definition of `struct timeval'. 2001-01-31 Ulrich Drepper <drepper@redhat.com>
This commit is contained in:
parent
f798bf32a2
commit
70dc5068f8
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2001-01-31 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/fnmatch_loop.c: Remove incorrect reverse condition in
|
||||
[. .] matching. Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
|
||||
|
||||
2001-01-31 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* misc/sys/select.h: Include <bits/time.h> instead of <sys/time.h>
|
||||
to get definition of `struct timeval'.
|
||||
|
||||
2001-01-31 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/tst-fnmatch.input: Add test cases for de_DE.UTF-8 locale.
|
||||
|
@ -42,7 +42,7 @@ typedef __sigset_t sigset_t;
|
||||
#define __need_timespec
|
||||
#include <time.h>
|
||||
#define __need_timeval
|
||||
#include <sys/time.h>
|
||||
#include <bits/time.h>
|
||||
|
||||
|
||||
/* The fd_set member is required to be an array of longs. */
|
||||
|
@ -531,7 +531,7 @@ FCT (pattern, string, no_leading_period, flags)
|
||||
|
||||
c = *p++;
|
||||
}
|
||||
else if (symb_table[2 * elem] != 0 && c1 == 1)
|
||||
else if (c1 == 1)
|
||||
{
|
||||
/* No valid character. Match it as a
|
||||
single byte. */
|
||||
|
Loading…
Reference in New Issue
Block a user