diff options
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 08abe77337..d87dd7fecf 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -910,7 +910,7 @@ run_scheduled_events(time_t now) * (if we've passed our internal checks). */ if (time_to_fetch_directory < now) { /* Only caches actually need to fetch directories now. */ - if (options->DirPort && !options->V1AuthoritativeDir) { + if (options->DirPort && !authdir_mode_v1(options)) { /* XXX actually, we should only do this if we want to advertise * our dirport. not simply if we configured one. -RD */ if (any_trusted_dir_is_v1_authority()) |