]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 18 Mar 2003 23:50:44 +0000 (23:50 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 18 Mar 2003 23:50:44 +0000 (23:50 +0000)
2003-03-18  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK
correctly.

ChangeLog
sysdeps/posix/sysconf.c

index fb21992d8ca2791782d877f933f8e264693b48ba..f1b1773904b433d06d520a2ec723acc437e59a6c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-18  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK
+       correctly.
+
 2003-03-18  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * sysdeps/powerpc/powerpc64/memcpy.S: New file.
index 7ad8ac7891f5ab6806e888674d826a39043a17ef..bf154f3e1ac485e8ab8e2678ec437a026842f7bf 100644 (file)
@@ -938,7 +938,7 @@ __sysconf (name)
 #endif
 
     case _SC_MONOTONIC_CLOCK:
-#ifdef _POSIX_MONOTONIC_CLOCK
+#if _POSIX_MONOTONIC_CLOCK
       return _POSIX_MONOTONIC_CLOCK;
 #else
       return -1;