diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-05 01:57:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-05 01:57:07 +0000 |
commit | a53a73a782377bc1725c458b20b26368dd260b0f (patch) | |
tree | 188f4587f665621eee845331bd55c256347fec80 /src/or/main.c | |
parent | 67a77f17caa215cd2b01b379f2173d082c6632e9 (diff) | |
download | tor-a53a73a782377bc1725c458b20b26368dd260b0f.tar tor-a53a73a782377bc1725c458b20b26368dd260b0f.tar.gz |
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
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 4ca4be40f..f5e24aeb3 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; } /** |