From: Jakub Jelinek Date: Mon, 23 May 2005 14:40:57 +0000 (+0000) Subject: 2.3.5-8 X-Git-Tag: cvs/fedora-glibc-2_3_5-8~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da947375a5653761ee893c6a3b6d9b1bbcc363bf;p=thirdparty%2Fglibc.git 2.3.5-8 --- diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in index d5ba493fe37..dd99b57715e 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 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 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 c8cef55fac1..3a1717daf3f 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;