diff options
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 21ff68924..39ce5ff1c 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -102,6 +102,7 @@ void dns_init(void) { init_cache_tree(); + dnsworkers_rotate(); } /** Helper: free storage held by an entry in the DNS cache. */ @@ -722,7 +723,8 @@ dnsworkers_rotate(void) num_dnsworkers--; } last_rotation_time = time(NULL); - spawn_enough_dnsworkers(); + if (server_mode(get_options())) + spawn_enough_dnsworkers(); } /** Implementation for DNS workers; this code runs in a separate |