]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Call get_options() once at the top of circuit_log_ancient_one_hop_circuits()
authorteor <teor2345@gmail.com>
Wed, 9 Nov 2016 00:15:48 +0000 (11:15 +1100)
committerteor <teor2345@gmail.com>
Wed, 9 Nov 2016 00:15:48 +0000 (11:15 +1100)
Refactoring, no behaviour change.

src/or/circuituse.c

index f344703331c1bad3967ee2ae46166e623f9bac9b..18cd7e3a5b6395a2be6c0626a3ffbd761266e82f 100644 (file)
@@ -797,6 +797,7 @@ circuit_log_ancient_one_hop_circuits(int age)
   time_t cutoff = now - age;
   int n_found = 0;
   smartlist_t *log_these = smartlist_new();
+  const or_options_t *options = get_options();
 
   SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) {
     const origin_circuit_t *ocirc;
@@ -839,7 +840,7 @@ circuit_log_ancient_one_hop_circuits(int age)
 
       tor_asprintf(&dirty, "Dirty since %s (%ld seconds vs %ld-second cutoff)",
                    dirty_since, (long)(now - circ->timestamp_dirty),
-                   (long) get_options()->MaxCircuitDirtiness);
+                   (long) options->MaxCircuitDirtiness);
     } else {
       dirty = tor_strdup("Not marked dirty");
     }