diff options
author | Roger Dingledine <arma@torproject.org> | 2005-03-22 00:42:38 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-03-22 00:42:38 +0000 |
commit | 35953edae073e69efe06f4ea313066b514b772a0 (patch) | |
tree | 3f89981b90370e5c4c727e3b86905813871828d9 /src/or/routerlist.c | |
parent | 5d5b12ce750e60041f7654449129fe268ed76a2e (diff) | |
download | tor-35953edae073e69efe06f4ea313066b514b772a0.tar.gz tor-35953edae073e69efe06f4ea313066b514b772a0.zip |
Implement controller's "extendcircuit" directive.
Also refactor circuit building so we plan the whole path ahead
of time.
svn:r3797
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 0ae62ad308..6763902f88 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -628,7 +628,7 @@ routerinfo_t *router_get_by_hexdigest(const char *hexdigest) { } /** Return the router in our routerlist whose 20-byte key digest - * is <b>hexdigest</b>. Return NULL if no such router is known. */ + * is <b>digest</b>. Return NULL if no such router is known. */ routerinfo_t *router_get_by_digest(const char *digest) { int i; routerinfo_t *router; |