Deleted Added
full compact
asn1pars.c (194206) asn1pars.c (237657)
1/* apps/asn1pars.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 *

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

403 {
404 BIO_printf(bio, "Can't find 'asn1' in '%s'\n", genconf);
405 goto err;
406 }
407 }
408
409 atyp = ASN1_generate_nconf(genstr, cnf);
410 NCONF_free(cnf);
1/* apps/asn1pars.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 *

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

403 {
404 BIO_printf(bio, "Can't find 'asn1' in '%s'\n", genconf);
405 goto err;
406 }
407 }
408
409 atyp = ASN1_generate_nconf(genstr, cnf);
410 NCONF_free(cnf);
411 cnf = NULL;
411
412 if (!atyp)
413 return -1;
414
415 len = i2d_ASN1_TYPE(atyp, NULL);
416
417 if (len <= 0)
418 goto err;

--- 26 unchanged lines hidden ---
412
413 if (!atyp)
414 return -1;
415
416 len = i2d_ASN1_TYPE(atyp, NULL);
417
418 if (len <= 0)
419 goto err;

--- 26 unchanged lines hidden ---