summaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@gmail.com>2011-11-22 04:53:43 +0100
committerGeorge Kadianakis <desnacked@gmail.com>2011-11-24 22:09:06 +0100
commit659381e00dc09deb4fb342d9f45cfae0b65aa33f (patch)
tree383ff1a6ec2575fb748bac94005e513171775d83 /src/or/router.c
parentedec9409e85ba4a8b5d0575b23046d83d7562b87 (diff)
downloadtor-659381e00dc09deb4fb342d9f45cfae0b65aa33f.tar.gz
tor-659381e00dc09deb4fb342d9f45cfae0b65aa33f.zip
Introduce the DynamicPrimes configuration option.
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c
index b6b96a5fff..414d346bfa 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -514,7 +514,8 @@ init_keys(void)
* openssl to initialize itself. */
if (crypto_global_init(get_options()->HardwareAccel,
get_options()->AccelName,
- get_options()->AccelDir)) {
+ get_options()->AccelDir,
+ get_options()->DynamicPrimes)) {
log_err(LD_BUG, "Unable to initialize OpenSSL. Exiting.");
return -1;
}