From: Rebecca Cran Date: Thu, 13 Jun 2019 22:09:47 +0000 (-0600) Subject: Swap #if blocks in uid.c so target platform gets checked before host X-Git-Tag: OpenSSL_1_1_1d~139 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=10bf5068190ab25324648dd4a0becd4bd46ecc37;p=oweals%2Fopenssl.git 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 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/9158) --- diff --git a/crypto/uid.c b/crypto/uid.c index b2b096446f..65b1171039 100644 --- a/crypto/uid.c +++ b/crypto/uid.c @@ -10,20 +10,20 @@ #include #include -#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