summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-05-23 14:40:57 +0000
committerJakub Jelinek <jakub@redhat.com>2005-05-23 14:40:57 +0000
commitda947375a5653761ee893c6a3b6d9b1bbcc363bf (patch)
treee989e112db9a6604ef8c8e8bdec44b76daa9e240
parentee6630e651e6b7cad2d783ec3be33bf98636a819 (diff)
2.3.5-8
-rw-r--r--fedora/glibc.spec.in7
-rw-r--r--sysdeps/unix/clock_gettime.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index d5ba493fe3..dd99b57715 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -1,4 +1,4 @@
-%define glibcrelease 7
+%define glibcrelease 8
%define auxarches i586 i686 athlon sparcv9 alphaev6
%define prelinkarches noarch
%define nptlarches i386 i686 athlon x86_64 ia64 s390 s390x sparcv9 sparc64 ppc ppc64
@@ -1339,6 +1339,11 @@ rm -f *.filelist*
%endif
%changelog
+* Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
+- update from CVS
+ - fix kernel version check in ld.so
+- fix sendfile{,64} prototypes (BZ#961)
+
* Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
- update from CVS
- make regexec thread safe (BZ#934)
diff --git a/sysdeps/unix/clock_gettime.c b/sysdeps/unix/clock_gettime.c
index c8cef55fac..3a1717daf3 100644
--- a/sysdeps/unix/clock_gettime.c
+++ b/sysdeps/unix/clock_gettime.c
@@ -100,7 +100,7 @@ clock_gettime (clockid_t clock_id, struct timespec *tp)
SYSDEP_GETTIME;
#endif
-#ifdef HANDLED_REALTIME
+#ifndef HANDLED_REALTIME
case CLOCK_REALTIME:
HANDLE_REALTIME;
break;