[tor-commits] [tor/master] Fix dead assignment warning in test_hs_service.c

nickm at torproject.org nickm at torproject.org
Fri Jan 4 02:33:44 UTC 2019


commit d58a597a55dba2ac468cbdef5172ecda1dc2344f
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Dec 17 09:28:08 2018 -0500

    Fix dead assignment warning in test_hs_service.c
---
 src/test/test_hs_service.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/test_hs_service.c b/src/test/test_hs_service.c
index ee2d71aa7..79cbd2e5d 100644
--- a/src/test/test_hs_service.c
+++ b/src/test/test_hs_service.c
@@ -1396,7 +1396,6 @@ static void
 test_build_update_descriptors(void *arg)
 {
   int ret;
-  time_t now = time(NULL);
   node_t *node;
   hs_service_t *service;
   hs_service_intro_point_t *ip_cur, *ip_next;
@@ -1422,7 +1421,8 @@ test_build_update_descriptors(void *arg)
   voting_schedule_recalculate_timing(get_options(), mock_ns.valid_after);
 
   update_approx_time(mock_ns.valid_after+1);
-  now = mock_ns.valid_after+1;
+
+  time_t now = mock_ns.valid_after+1;
 
   /* Create a service without a current descriptor to trigger a build. */
   service = helper_create_service();





More information about the tor-commits mailing list