diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-17 17:20:42 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-17 17:20:42 +0000 |
commit | f43bcdc063b486516187715bb0205e3c154497db (patch) | |
tree | 8157de32e728e85a663bd0e46ed06920c6488b38 /src/or/connection_edge.c | |
parent | fc5e686b197b350b0e5eab7e7f355a226125d834 (diff) | |
download | tor-f43bcdc063b486516187715bb0205e3c154497db.tar.gz tor-f43bcdc063b486516187715bb0205e3c154497db.zip |
Use ctags and a python script to find identifiers that are never used anywhere, and remove the ones that we really want gone.
svn:r17651
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 8e16b8ed84..0775e39645 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -2923,8 +2923,8 @@ connection_ap_can_use_exit(edge_connection_t *conn, routerinfo_t *exit) return 1; } -/** Make connection redirection follow the provided list of - * exit_redirect_t */ +/** Make connection redirection follow the provided list of exit_redirect_t. + * Steals a reference to <b>lst</b>; caller MUST NOT free <b>list</b>. */ void set_exit_redirects(smartlist_t *lst) { |