diff options
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 090d96c155..03186bf010 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1703,8 +1703,9 @@ options_act(const or_options_t *old_options) time_t now = time(NULL); int print_notice = 0; - /* If we aren't acting as a server, we can't collect stats anyway. */ - if (!server_mode(options)) { + /* If we aren't acting as a server, or we are a bridge, we can't collect + * stats anyway. */ + if (!public_server_mode(options)) { options->CellStatistics = 0; options->DirReqStatistics = 0; options->EntryStatistics = 0; |