diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-09 07:05:53 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-09 07:05:53 +0000 |
commit | 6521c2ce51b3b808dd8ef5c47dc9995acce149e5 (patch) | |
tree | 4957b0a02b4e397c146f9b2f4c462acf8fb02b54 /src/or/control.c | |
parent | 48a0b6c476dee067685a66a955cdffc8a37ea9d3 (diff) | |
download | tor-6521c2ce51b3b808dd8ef5c47dc9995acce149e5.tar.gz tor-6521c2ce51b3b808dd8ef5c47dc9995acce149e5.zip |
Stop using the wrong DataDirectory when we're validating.
Also validate/normalize the DataDirectory better.
svn:r2732
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c index 57ef6f484e..0a428e9612 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -577,7 +577,7 @@ init_cookie_authentication(void) /* XXXX009 NM add config option to disable this. */ tor_snprintf(fname, sizeof(fname), "%s/control_auth_cookie", - get_data_directory()); + get_options()->DataDirectory); crypto_rand(authentication_cookie, AUTHENTICATION_COOKIE_LEN); authentication_cookie_is_set = 1; if (write_bytes_to_file(fname, authentication_cookie, |