diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-07 22:55:53 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-12-06 11:15:01 -0500 |
commit | 194cc24792056952de00a67b4983c3cd4f683ce5 (patch) | |
tree | 4b87e51bf2c493d2cd5c59b2d89ad175b8e61d07 /src/or/routerlist.h | |
parent | bd93ff8dd76b06ca3afe1f362b086d4f12639f71 (diff) | |
download | tor-194cc24792056952de00a67b4983c3cd4f683ce5.tar.gz tor-194cc24792056952de00a67b4983c3cd4f683ce5.zip |
Make output of router_get_trusted_dir_servers const
Diffstat (limited to 'src/or/routerlist.h')
-rw-r--r-- | src/or/routerlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.h b/src/or/routerlist.h index c8381996d2..3c659e8ee8 100644 --- a/src/or/routerlist.h +++ b/src/or/routerlist.h @@ -25,7 +25,7 @@ void authority_cert_dl_failed(const char *id_digest, int status); void authority_certs_fetch_missing(networkstatus_t *status, time_t now); int router_reload_router_list(void); int authority_cert_dl_looks_uncertain(const char *id_digest); -smartlist_t *router_get_trusted_dir_servers(void); +const smartlist_t *router_get_trusted_dir_servers(void); const routerstatus_t *router_pick_directory_server(dirinfo_type_t type, int flags); |