From: Richard Levitte Date: Thu, 19 Jun 2003 17:01:42 +0000 (+0000) Subject: EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will X-Git-Tag: OpenSSL_0_9_7c~76 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=844df66895f50bad3e1da33a65cd93e23a795d2a;p=oweals%2Fopenssl.git EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will take care of returning if necessary. --- diff --git a/e_os.h b/e_os.h index b601e9333e..4c6e70dffa 100644 --- a/e_os.h +++ b/e_os.h @@ -250,7 +250,7 @@ extern "C" { # define EXIT(n) _wsetexit(_WINEXITNOPERSIST) # define OPENSSL_EXIT(n) do { if (n == 0) EXIT(n); return(n); } while(0) # else -# define EXIT(n) return(n) +# define EXIT(n) exit(n) # endif # define LIST_SEPARATOR_CHAR ';' # ifndef X_OK