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

Diff for /src/usr.bin/openssl/asn1pars.c between version 1.14 and 1.15

version 1.14, 2023/03/07 05:53:17 version 1.15, 2023/03/10 09:44:54
Line 361 
Line 361 
                                 goto end;                                  goto end;
                         }                          }
                         typ = ASN1_TYPE_get(at);                          typ = ASN1_TYPE_get(at);
                         if (typ == V_ASN1_OBJECT || typ == V_ASN1_NULL) {                          if (typ == V_ASN1_BOOLEAN || typ == V_ASN1_NULL ||
                               typ == V_ASN1_OBJECT) {
                                 BIO_printf(bio_err, "Can't parse %s type\n",                                  BIO_printf(bio_err, "Can't parse %s type\n",
                                     typ == V_ASN1_NULL ? "NULL" : "OBJECT");                                      ASN1_tag2str(typ));
                                 ERR_print_errors(bio_err);                                  ERR_print_errors(bio_err);
                                 goto end;                                  goto end;
                         }                          }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15