aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-05-27 14:45:44 -0400
committerNick Mathewson <nickm@torproject.org>2009-05-31 19:15:36 -0400
commite8ac2a84774214596b031599e134cb4fa886dd1f (patch)
treec62afa69b36b7be4d0e22b2fe8c39ebcb449057a /src/or/or.h
parentfd992deeea769721dc95bacb40ea360ef42f76dd (diff)
downloadtor-e8ac2a84774214596b031599e134cb4fa886dd1f.tar.gz
tor-e8ac2a84774214596b031599e134cb4fa886dd1f.zip
Make the second argument to routerset_contains_extendinfo const
Diffstat (limited to 'src/or/or.h')
-rw-r--r--src/or/or.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h
index 6cc30c4f0b..330b2ecbe7 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -4504,7 +4504,8 @@ int routerset_needs_geoip(const routerset_t *set);
int routerset_contains_router(const routerset_t *set, routerinfo_t *ri);
int routerset_contains_routerstatus(const routerset_t *set,
routerstatus_t *rs);
-int routerset_contains_extendinfo(const routerset_t *set, extend_info_t *ei);
+int routerset_contains_extendinfo(const routerset_t *set,
+ const extend_info_t *ei);
void routerset_get_all_routers(smartlist_t *out, const routerset_t *routerset,
int running_only);
void routersets_get_disjunction(smartlist_t *target, const smartlist_t *source,