mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Update.
* intl/dcigettext.c: Fix a few warnings. Patch by Bruno Haible <haible@ilog.fr>. 2001-01-08 Andreas Jaeger <aj@suse.de> * io/test-lfs.c (do_test): Check lseek64 return for EINVAL. Reported by Joseph S. Myers <jsm28@cam.ac.uk>. 2001-01-08 Ulrich Drepper <drepper@redhat.com>
This commit is contained in:
parent
2090dd7364
commit
0b795736c8
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2001-01-08 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* intl/dcigettext.c: Fix a few warnings.
|
||||
Patch by Bruno Haible <haible@ilog.fr>.
|
||||
|
||||
2001-01-08 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* io/test-lfs.c (do_test): Check lseek64 return for EINVAL.
|
||||
Reported by Joseph S. Myers <jsm28@cam.ac.uk>.
|
||||
|
||||
2001-01-08 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/generic/segfault.c (install_handler): Check output file
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Some basic tests for LFS.
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 2000, 2001 Free Software Foundation, Inc.
|
||||
Contributed by Andreas Jaeger <aj@suse.de>, 2000.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -100,6 +100,11 @@ do_test (int argc, char *argv[])
|
||||
error (0, errno, "lseek64 is not supported");
|
||||
exit (EXIT_SUCCESS);
|
||||
}
|
||||
if (ret == -1 && errno == EINVAL)
|
||||
{
|
||||
error (0, errno, "LFS seems not to be supported ");
|
||||
exit (EXIT_SUCCESS);
|
||||
}
|
||||
|
||||
ret = write (fd, "Hello", 5);
|
||||
if (ret == -1 && errno == EINVAL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user