From: Richard Levitte Date: Thu, 14 Feb 2002 13:45:26 +0000 (+0000) Subject: For some reason, getting the topmost error was done the same way as X-Git-Tag: OpenSSL-engine-0_9_6c^2^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=016029c69f2c7f0a1a6772609dcf459832e7db0c;p=oweals%2Fopenssl.git For some reason, getting the topmost error was done the same way as getting the bottommost one. I hope I understood correctly how this should be done. It seems to work when running evp_test in an environment where it can't find openssl.cnf. --- diff --git a/crypto/err/err.c b/crypto/err/err.c index 3163163f71..04773d65a6 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -720,7 +720,7 @@ static unsigned long get_error_values(int inc, int top, const char **file, int * if (es->bottom == es->top) return 0; if (top) - i=(es->bottom+1)%ERR_NUM_ERRORS; /* last error */ + i=es->top; /* last error */ else i=(es->bottom+1)%ERR_NUM_ERRORS; /* first error */