* misc/truncate64.c (truncate64): Use __truncate not truncate.
authorUlrich Drepper <drepper@redhat.com>
Sat, 10 May 2008 23:38:33 +0000 (23:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 10 May 2008 23:38:33 +0000 (23:38 +0000)
ChangeLog
NEWS
misc/truncate64.c

index 1bec63252aa523575c7f0229223a659bee71dfb5..fe72549260ef7224bacb796f95465e17501ca1c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/NEWS b/NEWS
index 2d8621af7efdf62fd8913b4996eabe6c246043e7..92418d0740fed09ce7fdae0696a436b1f8615d42 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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.
 \f
+Version 2.9
+
+* Unified lookup for getaddrinfo: IPv4 and IPv6 addresses are now looked
+  up at the same time.
+\f
 Version 2.8
 
 * New locales: bo_CN, bo_IN.
index d7e80dc3aeb6590b721af7c07310c12f9fa788fb..4a8a54074595ac4d2f558a770a0f1c876706985e 100644 (file)
@@ -31,5 +31,5 @@ truncate64 (path, length)
       __set_errno (EINVAL);
       return -1;
     }
-  return truncate (path, (off_t) length);
+  return __truncate (path, (off_t) length);
 }