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

25845f
Fix -Wundef warning.  Addressed upstream as part of this commit:
25845f
25845f
commit 888c679ba406e89d86bdfbde033e307f5af5198f
25845f
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
25845f
Date:   Thu Jul 10 14:24:30 2014 +0530
25845f
25845f
    Sync up error.c with gnulib
25845f
25845f
diff --git a/misc/error.c b/misc/error.c
25845f
index 6fb192da4b38a4f9..3d0156e406fa1539 100644
25845f
--- a/misc/error.c
25845f
+++ b/misc/error.c
25845f
@@ -100,7 +100,7 @@ print_errno_message (int errnum)
25845f
 
25845f
 #if defined HAVE_STRERROR_R || _LIBC
25845f
   char errbuf[1024];
25845f
-# if STRERROR_R_CHAR_P || _LIBC
25845f
+# if _LIBC || STRERROR_R_CHAR_P
25845f
   s = __strerror_r (errnum, errbuf, sizeof errbuf);
25845f
 # else
25845f
   if (__strerror_r (errnum, errbuf, sizeof errbuf) == 0)