diff options
author | Roger Dingledine <arma@torproject.org> | 2004-08-07 09:01:56 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-08-07 09:01:56 +0000 |
commit | fb4b804c2c244a5575f6ce2d09eb2497ab0250e1 (patch) | |
tree | cf92d58db105d0496ec04f5a02660daf28d001dc /src/or/or.h | |
parent | 44ff309c2685f0adfa0229210cdd58d43b1ceafe (diff) | |
download | tor-fb4b804c2c244a5575f6ce2d09eb2497ab0250e1.tar.gz tor-fb4b804c2c244a5575f6ce2d09eb2497ab0250e1.zip |
Don't warn about being unverified if you're not in the running-routers
list at all.
svn:r2193
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index 995b5e5a7a..f2bd9a17cf 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1400,9 +1400,9 @@ int router_exit_policy_rejects_all(routerinfo_t *router); void running_routers_free(running_routers_t *rr); void routerlist_update_from_runningrouters(routerlist_t *list, running_routers_t *rr); -void router_update_status_from_smartlist(routerinfo_t *r, - time_t list_time, - smartlist_t *running_list); +int router_update_status_from_smartlist(routerinfo_t *r, + time_t list_time, + smartlist_t *running_list); /********************************* routerparse.c ************************/ |