diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2009-05-02 21:47:03 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2009-05-02 21:47:03 +0200 |
commit | e25fdce900b305b3d0aa2bd54594d0189386d4db (patch) | |
tree | 403b0e30a074ba15910c7fb121ad33823b60c830 /src/or/relay.c | |
parent | 7e411f4b302e01f36626ca3476bdbac225383410 (diff) | |
download | tor-e25fdce900b305b3d0aa2bd54594d0189386d4db.tar tor-e25fdce900b305b3d0aa2bd54594d0189386d4db.tar.gz |
Documentation fix.
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index b4592e85f..2d751e31c 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1660,7 +1660,7 @@ prev_circ_on_conn_p(circuit_t *circ, or_connection_t *conn) } /** Add <b>circ</b> to the list of circuits with pending cells on - * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */ + * <b>conn</b>. No effect if <b>circ</b> is already linked. */ void make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn) { @@ -1686,7 +1686,7 @@ make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn) assert_active_circuits_ok_paranoid(conn); } -/** Remove <b>circ</b> to the list of circuits with pending cells on +/** Remove <b>circ</b> from the list of circuits with pending cells on * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */ void make_circuit_inactive_on_conn(circuit_t *circ, or_connection_t *conn) |