diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-28 20:47:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-28 20:47:08 +0000 |
commit | 1bc21e7a70eb9f1f69c179bb251e612c7aecd655 (patch) | |
tree | 9ed0ab62f6a85dcae93d8239923bdb4c049c9b36 /io | |
parent | e852e889444a8bf27f3e5075d064e9922b38e7e2 (diff) | |
download | glibc-1bc21e7a70eb9f1f69c179bb251e612c7aecd655.zip glibc-1bc21e7a70eb9f1f69c179bb251e612c7aecd655.tar.gz glibc-1bc21e7a70eb9f1f69c179bb251e612c7aecd655.tar.bz2 |
Update.
* resolv/nss_dns/dns-host.c (getanswer_r): Lower the priority of
warnings when DNSSEC related records are received.
* resolv/gethnamaddr.c (getanswer): Likewise.
Patch by Brian Wellington <bwelling@anomaly.munge.com>.
* signal/signal.h: Add prototype for sysv_signal.
* math/libm-test.c (tgamma_test): Remove redundant tests.
* posix/glob.h: Add GLOB_TILDE_CHECK.
* sysdeps/generic/glob.c: Implement GLOB_TILDE_CHECK.
* posix/globtest.c: Add option T to enable GLOB_TILDE_CHECK.
* posix/globtest.sh: Re-enable test with ~ and non-existing user name.
Diffstat (limited to 'io')
-rw-r--r-- | io/sys/statfs.h | 4 | ||||
-rw-r--r-- | io/sys/statvfs.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/io/sys/statfs.h b/io/sys/statfs.h index 6d9d00f..436668b 100644 --- a/io/sys/statfs.h +++ b/io/sys/statfs.h @@ -1,5 +1,5 @@ /* Definitions for getting information about a filesystem. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -53,7 +53,7 @@ extern int fstatfs __P ((int __fildes, struct statfs *__buf)); extern int __REDIRECT (fstatfs, __P ((int __fildes, struct statfs *__buf)), fstatfs64); # else -# define statfs statfs64 +# define fstatfs fstatfs64 # endif #endif #ifdef __USE_LARGEFILE64 diff --git a/io/sys/statvfs.h b/io/sys/statvfs.h index 856d3c9..73a2fa7 100644 --- a/io/sys/statvfs.h +++ b/io/sys/statvfs.h @@ -37,7 +37,7 @@ extern int __REDIRECT (statvfs, __P ((__const char *__file, struct statvfs *__buf)), statvfs64); # else -# define statfs statfs64 +# define statvfs statvfs64 # endif #endif #ifdef __USE_LARGEFILE64 @@ -54,7 +54,7 @@ extern int fstatvfs __P ((int __fildes, struct statvfs *__buf)); extern int __REDIRECT (fstatvfs, __P ((int __fildes, struct statvfs *__buf)), fstatvfs64); # else -# define statfs statfs64 +# define fstatvfs fstatvfs64 # endif #endif #ifdef __USE_LARGEFILE64 |