components/pinentry/patches/001-util.c.patch
author jkohoute <jan.kohoutek@oracle.com>
Thu, 05 May 2016 02:17:43 -0700
branchs11u3-sru
changeset 5924 e654f9499329
parent 303 cae844b2d132
permissions -rw-r--r--
build metadata for S11.3SRU8.5

--- secmem/util.c	Wed Oct 28 09:42:42 2009
+++ secmem/util.c	Wed Oct 28 09:43:01 2009
@@ -34,11 +34,10 @@
 
 #ifndef TEMP_FAILURE_RETRY
 #define TEMP_FAILURE_RETRY(expression) \
-  (__extension__							      \
     ({ long int __result;						      \
        do __result = (long int) (expression);				      \
        while (__result == -1L && errno == EINTR);			      \
-       __result; }))
+       __result; })
 #endif
 
 #ifndef HAVE_DOSISH_SYSTEM