Commit d3a28e8b authored by Richard Levitte's avatar Richard Levitte
Browse files

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

take care of returning if necessary.
parent 0bd71d3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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