Deleted Added
full compact
pkcs7.c (68651) pkcs7.c (100936)
1/* apps/pkcs7.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 74 unchanged lines hidden (view full) ---

83int MAIN(int argc, char **argv)
84 {
85 PKCS7 *p7=NULL;
86 int i,badops=0;
87 BIO *in=NULL,*out=NULL;
88 int informat,outformat;
89 char *infile,*outfile,*prog;
90 int print_certs=0,text=0,noout=0;
1/* apps/pkcs7.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 74 unchanged lines hidden (view full) ---

83int MAIN(int argc, char **argv)
84 {
85 PKCS7 *p7=NULL;
86 int i,badops=0;
87 BIO *in=NULL,*out=NULL;
88 int informat,outformat;
89 char *infile,*outfile,*prog;
90 int print_certs=0,text=0,noout=0;
91 int ret=0;
91 int ret=1;
92
93 apps_startup();
94
95 if (bio_err == NULL)
96 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
97 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
98
99 infile=NULL;

--- 194 unchanged lines hidden ---
92
93 apps_startup();
94
95 if (bio_err == NULL)
96 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
97 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
98
99 infile=NULL;

--- 194 unchanged lines hidden ---