diff options
author | Roger Dingledine <arma@torproject.org> | 2005-03-22 01:01:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-03-22 01:01:15 +0000 |
commit | f1ba4296c1af488bbbf9d74fcac94461793c910f (patch) | |
tree | c32d23137de0dba298d7ce604f9f7c13a2001131 /src/or/circuitlist.c | |
parent | 35953edae073e69efe06f4ea313066b514b772a0 (diff) | |
download | tor-f1ba4296c1af488bbbf9d74fcac94461793c910f.tar tor-f1ba4296c1af488bbbf9d74fcac94461793c910f.tar.gz |
clean up and refactor some more
svn:r3798
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index a25c874fd..f4add0609 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -77,7 +77,7 @@ void circuit_close_all_marked(void) circuit_t *circuit_new(uint16_t p_circ_id, connection_t *p_conn) { circuit_t *circ; static uint32_t n_circuits_allocated = 1; - /* never zero, since a global ID of 0 treated specially by the controller */ + /* never zero, since a global ID of 0 is treated specially by the controller */ circ = tor_malloc_zero(sizeof(circuit_t)); circ->magic = CIRCUIT_MAGIC; |