diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-05-23 14:40:57 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-05-23 14:40:57 +0000 |
commit | da947375a5653761ee893c6a3b6d9b1bbcc363bf (patch) | |
tree | e989e112db9a6604ef8c8e8bdec44b76daa9e240 | |
parent | ee6630e651e6b7cad2d783ec3be33bf98636a819 (diff) | |
download | glibc-da947375a5653761ee893c6a3b6d9b1bbcc363bf.tar glibc-da947375a5653761ee893c6a3b6d9b1bbcc363bf.tar.gz glibc-da947375a5653761ee893c6a3b6d9b1bbcc363bf.tar.bz2 glibc-da947375a5653761ee893c6a3b6d9b1bbcc363bf.zip |
2.3.5-8
-rw-r--r-- | fedora/glibc.spec.in | 7 | ||||
-rw-r--r-- | sysdeps/unix/clock_gettime.c | 2 |
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; |