Call get_options() once at the top of circuit_log_ancient_one_hop_circuits()

Refactoring, no behaviour change.
This commit is contained in:
teor 2016-11-09 11:15:48 +11:00
parent 89ec191b68
commit 5dca9487c4
No known key found for this signature in database
GPG Key ID: 450CBA7F968F094B
1 changed files with 2 additions and 1 deletions

View 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");
}