Blame SOURCES/glibc-rh1505492-undef-47.patch

147e83
commit 920238e061af76ac99dd94c40a80b0c6d23f35d4
147e83
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
147e83
Date:   Fri Sep 12 16:37:31 2014 +0530
147e83
147e83
    Fix typo in macro names in sysconf.c
147e83
    
147e83
    Spell _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
147e83
    Found when trying to make the getconf environment variables
147e83
    typo-proof.
147e83
    
147e83
            * sysdeps/posix/sysconf.c (__sysconf): Spell
147e83
            _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
147e83
147e83
diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c
147e83
index 6340b6250d57c295..e795b565367bdd1b 100644
147e83
--- a/sysdeps/posix/sysconf.c
147e83
+++ b/sysdeps/posix/sysconf.c
147e83
@@ -886,13 +886,13 @@ __sysconf (name)
147e83
       return -1;
147e83
 #endif
147e83
     case _SC_DEVICE_SPECIFIC:
147e83
-#if _POSIX_DEVICE_SPCIFIC > 0
147e83
+#if _POSIX_DEVICE_SPECIFIC > 0
147e83
       return _POSIX_DEVICE_SPECIFIC;
147e83
 #else
147e83
       return -1;
147e83
 #endif
147e83
     case _SC_DEVICE_SPECIFIC_R:
147e83
-#if _POSIX_DEVICE_SPCIFIC_R > 0
147e83
+#if _POSIX_DEVICE_SPECIFIC_R > 0
147e83
       return _POSIX_DEVICE_SPECIFIC_R;
147e83
 #else
147e83
       return -1;