From: Isis Lovecruft Date: Thu, 6 Aug 2015 06:05:07 +0000 (+0000) Subject: Fix misnamed parameter in or_circuit_new docstring. X-Git-Tag: tor-0.2.7.3-rc~110^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7155ee849e64e0997c533e21789501244eadc766;p=thirdparty%2Ftor.git Fix misnamed parameter in or_circuit_new docstring. * CHANGES `p_conn` to `p_chan` in `or_circuit_new()` docstring. --- 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 p_conn as - * p_circ_id. If p_conn is NULL, the circuit is unattached. */ +/** Allocate a new or_circuit_t, connected to p_chan as + * p_circ_id. If p_chan is NULL, the circuit is unattached. */ or_circuit_t * or_circuit_new(circid_t p_circ_id, channel_t *p_chan) {