diff options
author | Roger Dingledine <arma@torproject.org> | 2004-02-28 05:09:37 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-02-28 05:09:37 +0000 |
commit | b354ecfecdefd9e02f8f0a71efc1acedf5244815 (patch) | |
tree | 479f74fbb416ab0bc9fe6f645c49ac74f6e21f49 /src/or/onion.c | |
parent | f3ea6be7e561dd361b4f68ea03e31e5ca4515767 (diff) | |
download | tor-b354ecfecdefd9e02f8f0a71efc1acedf5244815.tar.gz tor-b354ecfecdefd9e02f8f0a71efc1acedf5244815.zip |
rename ExcludedNodes config option to ExcludeNodes
svn:r1155
Diffstat (limited to 'src/or/onion.c')
-rw-r--r-- | src/or/onion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index ce132177c6..5768c41e66 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -298,7 +298,7 @@ static routerinfo_t *choose_good_exit_server(routerlist_t *dir) add_nickname_list_to_smartlist(preferredexits,options.ExitNodes); excludedexits = smartlist_create(MAX_ROUTERS_IN_DIR); - add_nickname_list_to_smartlist(excludedexits,options.ExcludedNodes); + add_nickname_list_to_smartlist(excludedexits,options.ExcludeNodes); sl = smartlist_create(MAX_ROUTERS_IN_DIR); @@ -445,7 +445,7 @@ int onion_extend_cpath(crypt_path_t **head_ptr, cpath_build_state_t *state, rout state->desired_path_len); excludednodes = smartlist_create(MAX_ROUTERS_IN_DIR); - add_nickname_list_to_smartlist(excludednodes,options.ExcludedNodes); + add_nickname_list_to_smartlist(excludednodes,options.ExcludeNodes); if(cur_len == state->desired_path_len - 1) { /* Picking last node */ log_fn(LOG_DEBUG, "Contemplating last hop: choice already made: %s", |