X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=apps%2Fpkcs7.c;h=738dd853ceed006ba3e28fe4eaea8599a2b704a7;hp=1cc91509a2b017efce953a683dbe5949d2921c5f;hb=e23500016938ea5e69a064c398efd71d0a3e1037;hpb=1372965e2ebed49c810978e00be50006f1d7219a diff --git a/apps/pkcs7.c b/apps/pkcs7.c index 1cc91509a2..738dd853ce 100644 --- a/apps/pkcs7.c +++ b/apps/pkcs7.c @@ -89,7 +89,7 @@ int MAIN(int argc, char **argv) int informat,outformat; char *infile,*outfile,*prog; int print_certs=0,text=0,noout=0; - int ret=0; + int ret=1; char *engine=NULL; apps_startup(); @@ -301,5 +301,5 @@ end: if (in != NULL) BIO_free(in); if (out != NULL) BIO_free_all(out); apps_shutdown(); - EXIT(ret); + OPENSSL_EXIT(ret); }