]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix misnamed parameter in or_circuit_new docstring.
authorIsis Lovecruft <isis@torproject.org>
Thu, 6 Aug 2015 06:05:07 +0000 (06:05 +0000)
committerIsis Lovecruft <isis@torproject.org>
Thu, 6 Aug 2015 06:05:07 +0000 (06:05 +0000)
 * CHANGES `p_conn` to `p_chan` in `or_circuit_new()` docstring.

src/or/circuitlist.c

index bf7f8daca70f1c72c0fdff7a02379006e913df12..716024df6aab51e98bb9724d5da1d62a2fb53d9f 100644 (file)
@@ -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)
 {