diff options
author | Isis Lovecruft <isis@torproject.org> | 2015-08-06 06:05:07 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2015-08-06 06:05:07 +0000 |
commit | 7155ee849e64e0997c533e21789501244eadc766 (patch) | |
tree | 0e0868d6ffdda03cec43091f88c1195c6e2b36b3 /src/or/circuitlist.c | |
parent | 347fe449fe818f97e0f3ba29dd0a08ff6d39081e (diff) | |
download | tor-7155ee849e64e0997c533e21789501244eadc766.tar.gz tor-7155ee849e64e0997c533e21789501244eadc766.zip |
Fix misnamed parameter in or_circuit_new docstring.
* CHANGES `p_conn` to `p_chan` in `or_circuit_new()` docstring.
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index bf7f8daca7..716024df6a 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -716,8 +716,8 @@ origin_circuit_new(void) return circ; } -/** Allocate a new or_circuit_t, connected to <b>p_conn</b> as - * <b>p_circ_id</b>. If <b>p_conn</b> is NULL, the circuit is unattached. */ +/** Allocate a new or_circuit_t, connected to <b>p_chan</b> as + * <b>p_circ_id</b>. If <b>p_chan</b> is NULL, the circuit is unattached. */ or_circuit_t * or_circuit_new(circid_t p_circ_id, channel_t *p_chan) { |