]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
fix wide lines
authorNick Mathewson <nickm@torproject.org>
Fri, 25 Aug 2017 15:34:42 +0000 (11:34 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 25 Aug 2017 15:34:42 +0000 (11:34 -0400)
src/or/hs_service.c

index 04248eaa06dab688ff97d1ea2d5a5e741b091195..a207fe3318a2b341e923f6c77d23281013648ff0 100644 (file)
@@ -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();
     }