From 58764d8ec6799fc5ea91bcbb1655071f869bb753 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 21 Nov 2011 18:42:07 -0500 Subject: [PATCH] apparently or_options_t likes being a const in master --- src/or/dirserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 64db94df31..988506692d 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1864,7 +1864,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl) long *tks; double *mtbfs, *wfus; time_t now = time(NULL); - or_options_t *options = get_options(); + const or_options_t *options = get_options(); /* initialize these all here, in case there are no routers */ stable_uptime = 0; -- 2.47.3