From a53a73a782377bc1725c458b20b26368dd260b0f Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sun, 5 Feb 2006 01:57:07 +0000 Subject: [PATCH] forward-port the part where ordinary users try to fetch directories less often. not critical but might as well stay in sync with stable. svn:r5910 --- src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/main.c b/src/or/main.c index 4ca4be40f0..f5e24aeb39 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -537,7 +537,7 @@ get_dir_fetch_period(or_options_t *options) return 20*60; else /* Default for average user. */ - return 40*60; + return 120*60; } /**