mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Simplify logic to use smartlist_add_asprintf()
This commit is contained in:
parent
151d446aa1
commit
f7adf3653f
@ -1995,9 +1995,8 @@ dirclient_dump_total_dls(void)
|
||||
if (options->SafeLogging_ != SAFELOG_SCRUB_NONE &&
|
||||
purpose_needs_anonymity(i, ROUTER_PURPOSE_GENERAL, NULL))
|
||||
continue;
|
||||
char *line = NULL;
|
||||
tor_asprintf(&line, "%"PRIu64" (%s)", n, dir_conn_purpose_to_string(i));
|
||||
smartlist_add(lines, line);
|
||||
smartlist_add_asprintf(lines, "%"PRIu64" (%s)",
|
||||
n, dir_conn_purpose_to_string(i));
|
||||
}
|
||||
|
||||
if (smartlist_len(lines) > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user