diff options
author | Roger Dingledine <arma@torproject.org> | 2008-02-11 06:34:10 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-02-11 06:34:10 +0000 |
commit | a89e523f19f33176ddf6d9e447318f1f319e4af8 (patch) | |
tree | 69f2dcdbf02cb237eefe0bd0ec0c05d8e2e028de | |
parent | 28483467d02ea0002fbceb8c5f5479972f1803fe (diff) | |
download | tor-a89e523f19f33176ddf6d9e447318f1f319e4af8.tar.gz tor-a89e523f19f33176ddf6d9e447318f1f319e4af8.zip |
note a simplification for the future
svn:r13466
-rw-r--r-- | src/or/circuitbuild.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index dcb70a2459..bd6f504c3b 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1513,7 +1513,9 @@ onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop) * probably already connected to them. * * We only return one, so this doesn't become stupid when the - * whole network has upgraded. */ + * whole network has upgraded. + * XXX021 we can great simplify this function now that all the broken + * versions are obsolete. -RD */ static char * compute_preferred_testing_list(const char *answer) { |