EXIT() should mainly be exit(n), not return(n). OPENSSL_EXIT() will

take care of returning if necessary.
This commit is contained in:
Richard Levitte 2003-06-19 16:56:19 +00:00
parent 0bd71d3b7e
commit d3a28e8b8d

2
e_os.h
View File

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