components/pinentry/patches/001-util.c.patch
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Mon, 11 Mar 2013 10:38:09 -0700
branchs11-update
changeset 2520 ceec631e74d1
parent 303 cae844b2d132
permissions -rw-r--r--
Close of build 10.

--- 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