diff options
author | George Kadianakis <desnacked@gmail.com> | 2011-11-22 04:53:43 +0100 |
---|---|---|
committer | George Kadianakis <desnacked@gmail.com> | 2011-11-24 22:09:06 +0100 |
commit | 659381e00dc09deb4fb342d9f45cfae0b65aa33f (patch) | |
tree | 383ff1a6ec2575fb748bac94005e513171775d83 /src/or/main.c | |
parent | edec9409e85ba4a8b5d0575b23046d83d7562b87 (diff) | |
download | tor-659381e00dc09deb4fb342d9f45cfae0b65aa33f.tar.gz tor-659381e00dc09deb4fb342d9f45cfae0b65aa33f.zip |
Introduce the DynamicPrimes configuration option.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 7008d388a1..3c75e1c645 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2275,7 +2275,8 @@ tor_init(int argc, char *argv[]) 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; } |