mirror of
https://github.com/openssl/openssl.git
synced 2025-01-26 11:53:40 +08:00
Adjust the parameter lists in some not commonly used files.
PR: 428
This commit is contained in:
parent
7eed0fc041
commit
0c055b201e
@ -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 New Issue
Block a user