have 'openssl pkcs7' exit with code 1 on error instead of 0.
PR: 119
diff --git a/apps/pkcs7.c b/apps/pkcs7.c
index 1cc9150..0cced40 100644
--- a/apps/pkcs7.c
+++ b/apps/pkcs7.c
@@ -89,7 +89,7 @@
 	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();