mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Use connection_or_get_num_circuits() in control.c
This commit is contained in:
parent
f0f87cb68a
commit
9ad7ba9f22
@ -3829,7 +3829,7 @@ control_event_or_conn_status(or_connection_t *conn, or_conn_status_event_t tp,
|
||||
} else {
|
||||
ncircs = 0;
|
||||
}
|
||||
ncircs += conn->n_circuits;
|
||||
ncircs += connection_or_get_num_circuits(conn);
|
||||
if (ncircs && (tp == OR_CONN_EVENT_FAILED || tp == OR_CONN_EVENT_CLOSED)) {
|
||||
tor_snprintf(ncircs_buf, sizeof(ncircs_buf), "%sNCIRCS=%d",
|
||||
reason ? " " : "", ncircs);
|
||||
|
Loading…
Reference in New Issue
Block a user