diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-12-01 13:08:37 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-12-07 16:10:37 +1100 |
commit | fb3e862b8690101276cf2dfe8a5fc2dfb69fb71f (patch) | |
tree | 3e2621c02df6da9963710c6a26c55dc010112c6a /src/or/main.c | |
parent | ee5337e90497e31c1ef18630c4f089e70bda5269 (diff) | |
download | tor-fb3e862b8690101276cf2dfe8a5fc2dfb69fb71f.tar.gz tor-fb3e862b8690101276cf2dfe8a5fc2dfb69fb71f.zip |
Update comment: get_connection_array no longer takes "n"
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index 1469fd1da1..3f166c819d 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -500,8 +500,7 @@ connection_in_array(connection_t *conn) return smartlist_contains(connection_array, conn); } -/** Set <b>*array</b> to an array of all connections, and <b>*n</b> - * to the length of the array. <b>*array</b> and <b>*n</b> must not +/** Set <b>*array</b> to an array of all connections. <b>*array</b> must not * be modified. */ smartlist_t * |