summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-01-20 14:04:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-01-20 14:04:55 +0000
commit9359fc5ff2c10dae70b7d9303e99312a7c4471d9 (patch)
tree700f1437eeea83e82f3d48cbcbf862feaad74b8f /demos
parenta238d7d1eb53b0622d09c0e703b0922684fd436e (diff)
downloadopenssl-new-9359fc5ff2c10dae70b7d9303e99312a7c4471d9.tar.gz
Support -L options in VC++ link.
Diffstat (limited to 'demos')
-rw-r--r--demos/pkcs12/pkread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/pkcs12/pkread.c b/demos/pkcs12/pkread.c
index 02e16cda2a..bc193600bf 100644
--- a/demos/pkcs12/pkread.c
+++ b/demos/pkcs12/pkread.c
@@ -20,7 +20,8 @@ int main(int argc, char **argv)
fprintf(stderr, "Usage: pkread p12file password opfile\n");
exit (1);
}
- SSLeay_add_all_algorithms();
+ /*SSLeay_add_all_algorithms();*/
+ SSL_library_init();
ERR_load_crypto_strings();
if (!(fp = fopen(argv[1], "rb"))) {
fprintf(stderr, "Error opening file %s\n", argv[1]);