Adjust the parameter lists in some not commonly used files.
PR: 428
This commit is contained in:
parent
339e4dd3ef
commit
6983b4615c
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ main()
|
|||
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
|
||||
|
||||
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)
|
||||
DSA_print(bio_err,dsa,0);
|
||||
|
|
|
@ -118,7 +118,7 @@ int main(int argc, char **argv)
|
|||
printf("%s", OBJ_nid2ln(OBJ_obj2nid(ext->object)));
|
||||
if(ext->critical) printf(",critical:\n");
|
||||
else printf(":\n");
|
||||
X509V3_EXT_print_fp(stdout, ext, 0);
|
||||
X509V3_EXT_print_fp(stdout, ext, 0, 0);
|
||||
printf("\n");
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue