From 9ad7ba9f2267a9ee34fafda9356f1fa86633f00f Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Fri, 7 Sep 2012 04:40:42 -0700 Subject: [PATCH] Use connection_or_get_num_circuits() in control.c --- src/or/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/control.c b/src/or/control.c index 5c05fe159d..75a8f5939a 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -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);