tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 0de3147bf1b7a76b99ced69bde6e2169bb9a0caa
parent 82b581f3fc8ed3c84034bbb0c723ccd6b092fbe9
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 25 Aug 2017 11:34:42 -0400

fix wide lines

Diffstat:
Msrc/or/hs_service.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/or/hs_service.c b/src/or/hs_service.c @@ -1761,7 +1761,7 @@ rotate_all_descriptors(time_t now) int service_entered_overlap = service_just_entered_overlap_mode(service, overlap_mode_is_active); int service_left_overlap = service_just_left_overlap_mode(service, - overlap_mode_is_active); + overlap_mode_is_active); /* This should not be possible */ if (BUG(service_entered_overlap && service_left_overlap)) { return; @@ -1785,10 +1785,10 @@ rotate_all_descriptors(time_t now) } if (service_entered_overlap) { - /* We just entered overlap period: recompute all HSDir indices. We need to - * do this otherwise nodes can get stuck with old HSDir indices until we - * fetch a new consensus, and we might need to reupload our desc before - * that. */ + /* We just entered overlap period: recompute all HSDir indices. We need + * to do this otherwise nodes can get stuck with old HSDir indices until + * we fetch a new consensus, and we might need to reupload our desc + * before that. */ /* XXX find a better place than rotate_all_descriptors() to do this */ nodelist_recompute_all_hsdir_indices(); }