[BACK]Return to pkcs7.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/pkcs7.c between version 1.2 and 1.3

version 1.2, 2014/08/28 14:23:52 version 1.3, 2015/07/20 16:48:11
Line 173 
Line 173 
         if (infile == NULL)          if (infile == NULL)
                 BIO_set_fp(in, stdin, BIO_NOCLOSE);                  BIO_set_fp(in, stdin, BIO_NOCLOSE);
         else {          else {
                 if (BIO_read_filename(in, infile) <= 0)                  if (BIO_read_filename(in, infile) <= 0) {
                         if (in == NULL) {                          perror(infile);
                                 perror(infile);                          goto end;
                                 goto end;                  }
                         }  
         }          }
   
         if (informat == FORMAT_ASN1)          if (informat == FORMAT_ASN1)

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3