X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=apps%2Ferrstr.c;h=fedb568d686988ce9da114c63495227f2b927bfe;hp=e392328f93d2656f84653e53c68de5f37495538f;hb=77c46bbf2997e68e1974ed90bacdf236fedf1242;hpb=645749ef98612340b11c4bf2ba856e1fa469912b;ds=sidebyside diff --git a/apps/errstr.c b/apps/errstr.c index e392328f93..fedb568d68 100644 --- a/apps/errstr.c +++ b/apps/errstr.c @@ -91,7 +91,7 @@ int MAIN(int argc, char **argv) out=BIO_new(BIO_s_file()); if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE)) { -#ifdef VMS +#ifdef OPENSSL_SYS_VMS { BIO *tmpbio = BIO_new(BIO_f_linebuffer()); out = BIO_push(tmpbio, out); @@ -121,5 +121,6 @@ int MAIN(int argc, char **argv) ret++; } } + apps_shutdown(); EXIT(ret); }