From: Bodo Möller Date: Fri, 21 Jan 2000 11:30:52 +0000 (+0000) Subject: add ERR_print_errors after "end" label. X-Git-Tag: OpenSSL_0_9_5beta1~232 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=033db22d57bbe82e80d7e88c526daba008553d86;p=oweals%2Fopenssl.git add ERR_print_errors after "end" label. --- diff --git a/apps/enc.c b/apps/enc.c index ca30276d29..6c93e1722d 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -567,6 +567,7 @@ bad: BIO_printf(bio_err,"bytes written:%8ld\n",BIO_number_written(out)); } end: + ERR_print_errors(bio_err); if (strbuf != NULL) Free(strbuf); if (buff != NULL) Free(buff); if (in != NULL) BIO_free(in);