diff options
author | Roger Dingledine <arma@torproject.org> | 2005-08-15 10:27:37 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-08-15 10:27:37 +0000 |
commit | 10ff72393860183f3379a6f678d1c381704058db (patch) | |
tree | 156e62a453e5c8458b475d7072f1bae3928f676b /src/or/config.c | |
parent | 157f013d83f4710578e96fec165c677ed51056b9 (diff) | |
download | tor-10ff72393860183f3379a6f678d1c381704058db.tar.gz tor-10ff72393860183f3379a6f678d1c381704058db.zip |
initialize the dns worker cache tree whether or not we start
out as a server.
svn:r4785
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 70472f3cc4..e1f0acc9b9 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -432,8 +432,8 @@ options_act(void) return -1; } - /* Bail out at this point if we're not going to be a server: we want - * to not fork, and to log stuff to stderr. */ + /* Bail out at this point if we're not going to be a client or server: + * we want to not fork, and to log stuff to stderr. */ if (options->command != CMD_RUN_TOR) return 0; |