summaryrefslogtreecommitdiff
path: root/openbsd-compat/openssl-compat.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-01-29 10:54:11 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-01-29 10:54:11 +1100
commit19d32cb9348baec8e86bb4b19de513ff8d7fa3ce (patch)
tree79b3ed98e2f27f003d47a8ad92f52f3bc6a6d0da /openbsd-compat/openssl-compat.c
parenta1162985a51321158a625a214424a7ec51030a7d (diff)
- (dtucker) [openbsd-compat/openssl-compat.c] Bug #1707: Call OPENSSL_config()
after registering the hardware engines, which causes the openssl.cnf file to be processed. See OpenSSL's man page for OPENSSL_config(3) for details. Patch from Solomon Peachy, ok djm@.
Diffstat (limited to 'openbsd-compat/openssl-compat.c')
-rw-r--r--openbsd-compat/openssl-compat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c
index dd326c00f..420496caa 100644
--- a/openbsd-compat/openssl-compat.c
+++ b/openbsd-compat/openssl-compat.c
@@ -1,4 +1,4 @@
1/* $Id: openssl-compat.c,v 1.8 2009/03/07 11:22:35 dtucker Exp $ */ 1/* $Id: openssl-compat.c,v 1.9 2010/01/28 23:54:11 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> 4 * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
@@ -67,5 +67,6 @@ ssh_SSLeay_add_all_algorithms(void)
67 /* Enable use of crypto hardware */ 67 /* Enable use of crypto hardware */
68 ENGINE_load_builtin_engines(); 68 ENGINE_load_builtin_engines();
69 ENGINE_register_all_complete(); 69 ENGINE_register_all_complete();
70 OPENSSL_config(NULL);
70} 71}
71#endif 72#endif