diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-08 10:59:00 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-08 10:59:00 +0000 |
commit | 0bac4247cabfd790fe470f08d8f11c663ae7db06 (patch) | |
tree | fcfbf850b5f804c519415abea2a2a8a4afb16222 /src/or/main.c | |
parent | 1a9b5f9de9fd6b3b6d625e0374f31e7d665b9ef2 (diff) | |
download | tor-0bac4247cabfd790fe470f08d8f11c663ae7db06.tar tor-0bac4247cabfd790fe470f08d8f11c663ae7db06.tar.gz |
tls infrastructure now in place, give or take
svn:r434
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 0f6fa9a26..3ad95e3b9 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -462,7 +462,7 @@ static int do_main_loop(void) { } } - if(tor_tls_context_new(certfile, get_privatekey(), 1) < 0) { + if(tor_tls_context_new(options.CertFile, get_privatekey(), 1) < 0) { log_fn(LOG_ERR,"Error creating tls context."); return -1; } |