Adjust the parameter lists in some not commonly used files.

PR: 428
This commit is contained in:
Richard Levitte 2003-01-01 23:41:46 +00:00
parent 7eed0fc041
commit 0c055b201e
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ main()
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
memcpy(seed_buf,seed,20); memcpy(seed_buf,seed,20);
dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb); dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
if (dsa == NULL) if (dsa == NULL)
DSA_print(bio_err,dsa,0); DSA_print(bio_err,dsa,0);

View File

@ -118,7 +118,7 @@ int main(int argc, char **argv)
printf("%s", OBJ_nid2ln(OBJ_obj2nid(ext->object))); printf("%s", OBJ_nid2ln(OBJ_obj2nid(ext->object)));
if(ext->critical) printf(",critical:\n"); if(ext->critical) printf(",critical:\n");
else printf(":\n"); else printf(":\n");
X509V3_EXT_print_fp(stdout, ext, 0); X509V3_EXT_print_fp(stdout, ext, 0, 0);
printf("\n"); printf("\n");
} }