[tor-commits] [tor/master] Add missing consts; my fault.
nickm at torproject.org
nickm at torproject.org
Mon Feb 8 13:34:21 UTC 2016
commit 92048a1b43024d338e0b3fd1fd36d5255b98358e
Author: Nick Mathewson <nickm at torproject.org>
Date: Mon Feb 8 08:34:18 2016 -0500
Add missing consts; my fault.
---
src/or/router.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/router.c b/src/or/router.c
index ff21f41..6d3582f 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1739,7 +1739,7 @@ router_upload_dir_desc_to_dirservers(int force)
int
router_compare_to_my_exit_policy(const tor_addr_t *addr, uint16_t port)
{
- routerinfo_t *me = router_get_my_routerinfo();
+ const routerinfo_t *me = router_get_my_routerinfo();
if (!me) /* make sure routerinfo exists */
return -1;
@@ -1836,7 +1836,7 @@ const char *
router_get_my_descriptor(void)
{
const char *body;
- routerinfo_t *me = router_get_my_routerinfo();
+ const routerinfo_t *me = router_get_my_routerinfo();
if (! me)
return NULL;
tor_assert(me->cache_info.saved_location == SAVED_NOWHERE);
More information about the tor-commits
mailing list