diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-10 23:38:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-10 23:38:33 +0000 |
commit | b29899ae10cde6fd5f79ed3c3b1afe041d418bf0 (patch) | |
tree | 20bc6ddd900be34e75a3b5a49230cc23590ac6e0 | |
parent | c5ee217f0903f0f3227ed09f0ac07d8a3f36d8b7 (diff) | |
download | glibc-b29899ae10cde6fd5f79ed3c3b1afe041d418bf0.tar glibc-b29899ae10cde6fd5f79ed3c3b1afe041d418bf0.tar.gz glibc-b29899ae10cde6fd5f79ed3c3b1afe041d418bf0.tar.bz2 glibc-b29899ae10cde6fd5f79ed3c3b1afe041d418bf0.zip |
* misc/truncate64.c (truncate64): Use __truncate not truncate.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | misc/truncate64.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2008-05-08 David S. Miller <davem@davemloft.net> + * misc/truncate64.c (truncate64): Use __truncate not truncate. + * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel. (__ieee754_y0l): Likewise. * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise. @@ -1,10 +1,15 @@ -GNU C Library NEWS -- history of user-visible changes. 2008-4-9 +GNU C Library NEWS -- history of user-visible changes. 2008-5-10 Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc. See the end for copying conditions. Please send GNU C library bug reports via <http://sources.redhat.com/bugzilla/> using `glibc' in the "product" field. +Version 2.9 + +* Unified lookup for getaddrinfo: IPv4 and IPv6 addresses are now looked + up at the same time. + Version 2.8 * New locales: bo_CN, bo_IN. diff --git a/misc/truncate64.c b/misc/truncate64.c index d7e80dc3ae..4a8a540745 100644 --- a/misc/truncate64.c +++ b/misc/truncate64.c @@ -31,5 +31,5 @@ truncate64 (path, length) __set_errno (EINVAL); return -1; } - return truncate (path, (off_t) length); + return __truncate (path, (off_t) length); } |