[openssl] OpenSSL_1_1_1-stable update

Dr. Paul Dale pauli at openssl.org
Tue Jun 18 02:54:08 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  10bf5068190ab25324648dd4a0becd4bd46ecc37 (commit)
      from  ea5d4b89cc6f0273d5085f5902b68fc4aa32cb80 (commit)


- Log -----------------------------------------------------------------
commit 10bf5068190ab25324648dd4a0becd4bd46ecc37
Author: Rebecca Cran <rebecca at bluestop.org>
Date:   Thu Jun 13 16:09:47 2019 -0600

    Swap #if blocks in uid.c so target platform gets checked before host
    
    This avoids the case where a UEFI build on FreeBSD tries to call the system
    issetugid function instead of returning 0 as it should do.
    
    CLA: trivial
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    (Merged from https://github.com/openssl/openssl/pull/9158)

-----------------------------------------------------------------------

Summary of changes:
 crypto/uid.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/crypto/uid.c b/crypto/uid.c
index b2b0964..65b1171 100644
--- a/crypto/uid.c
+++ b/crypto/uid.c
@@ -10,20 +10,20 @@
 #include <openssl/crypto.h>
 #include <openssl/opensslconf.h>
 
-#if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__)
-
-# include OPENSSL_UNISTD
+#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
 
 int OPENSSL_issetugid(void)
 {
-    return issetugid();
+    return 0;
 }
 
-#elif defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
+#elif defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__)
+
+# include OPENSSL_UNISTD
 
 int OPENSSL_issetugid(void)
 {
-    return 0;
+    return issetugid();
 }
 
 #else


More information about the openssl-commits mailing list