diff options
author | George Kadianakis <desnacked@riseup.net> | 2012-12-05 19:19:24 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 14:59:56 -0400 |
commit | c46f1b810dab79514d650f44ccf21ca4d24a20d5 (patch) | |
tree | 6a8668bce4ceb5f49393ae7baab53262bdafc430 /src/or/config.c | |
parent | d8f74cc439ad025cc52aea8495705096d6538029 (diff) | |
download | tor-c46f1b810dab79514d650f44ccf21ca4d24a20d5.tar.gz tor-c46f1b810dab79514d650f44ccf21ca4d24a20d5.zip |
More Extended ORPort code improvements.
* Change name of init_ext_or_auth_cookie_authentication().
* Add a small comment.
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 542191dbeb..9c1505cf88 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1481,7 +1481,7 @@ options_act(const or_options_t *old_options) } /* If we have an ExtORPort, initialize its auth cookie. */ - if (init_ext_or_auth_cookie_authentication(!!options->ExtORPort_lines) < 0) { + if (init_ext_or_cookie_authentication(!!options->ExtORPort_lines) < 0) { log_warn(LD_CONFIG,"Error creating Extended ORPort cookie file."); return -1; } |