diff options
author | Roger Dingledine <arma@torproject.org> | 2007-01-10 23:48:24 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-01-10 23:48:24 +0000 |
commit | 35bd6caa1a1a97236ee94e9652d55dd991db0351 (patch) | |
tree | 19f47225bbb3ed8f037a477824e4385a93711ca2 /src/or/circuitlist.c | |
parent | 8835bb844ef30dcd30eba5410340f21bec7057a7 (diff) | |
download | tor-35bd6caa1a1a97236ee94e9652d55dd991db0351.tar.gz tor-35bd6caa1a1a97236ee94e9652d55dd991db0351.zip |
Fix crash with "tor --list-fingerprint" (reported by seeess).
svn:r9328
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 76c3ce8f3a..32125402d1 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -585,7 +585,7 @@ circuit_get_by_edge_conn(edge_connection_t *conn) return circ; } -/** For each circuits that have <b>conn</b> as n_conn or p_conn, unlink the +/** For each circuit that has <b>conn</b> as n_conn or p_conn, unlink the * circuit from the orconn,circid map, and mark it for close if it hasn't * been marked already. */ |