[tor-commits] [tor/master] dirvote: Make tokens a const in dirvote_parse_sr_commits()

nickm at torproject.org nickm at torproject.org
Tue May 1 15:51:58 UTC 2018


commit 2b6c13267fd17a8705737287209a3c3e886c262b
Author: David Goulet <dgoulet at torproject.org>
Date:   Tue May 1 11:35:26 2018 -0400

    dirvote: Make tokens a const in dirvote_parse_sr_commits()
    
    Part of #25988
    
    Signed-off-by: David Goulet <dgoulet at torproject.org>
---
 src/or/dirauth/dirvote.c | 4 ++--
 src/or/dirauth/dirvote.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/or/dirauth/dirvote.c b/src/or/dirauth/dirvote.c
index 6b7114b14..fd629ca6f 100644
--- a/src/or/dirauth/dirvote.c
+++ b/src/or/dirauth/dirvote.c
@@ -3892,7 +3892,7 @@ dirvote_format_all_microdesc_vote_lines(const routerinfo_t *ri, time_t now,
 /** Parse and extract all SR commits from <b>tokens</b> and place them in
  *  <b>ns</b>. */
 static void
-extract_shared_random_commits(networkstatus_t *ns, smartlist_t *tokens)
+extract_shared_random_commits(networkstatus_t *ns, const smartlist_t *tokens)
 {
   smartlist_t *chunks = NULL;
 
@@ -3948,7 +3948,7 @@ extract_shared_random_commits(networkstatus_t *ns, smartlist_t *tokens)
  *
  * This also sets the SR participation flag if present in the vote. */
 void
-dirvote_parse_sr_commits(networkstatus_t *ns, smartlist_t *tokens)
+dirvote_parse_sr_commits(networkstatus_t *ns, const smartlist_t *tokens)
 {
   /* Does this authority participates in the SR protocol? */
   directory_token_t *tok = find_opt_by_keyword(tokens, K_SR_FLAG);
diff --git a/src/or/dirauth/dirvote.h b/src/or/dirauth/dirvote.h
index 228121268..b69bbbf5d 100644
--- a/src/or/dirauth/dirvote.h
+++ b/src/or/dirauth/dirvote.h
@@ -99,7 +99,7 @@
 time_t dirvote_act(const or_options_t *options, time_t now);
 void dirvote_free_all(void);
 
-void dirvote_parse_sr_commits(networkstatus_t *ns, smartlist_t *tokens);
+void dirvote_parse_sr_commits(networkstatus_t *ns, const smartlist_t *tokens);
 void dirvote_clear_commits(networkstatus_t *ns);
 void dirvote_dirreq_get_status_vote(const char *url, smartlist_t *items,
                                     smartlist_t *dir_items);
@@ -128,7 +128,7 @@ dirvote_free_all(void)
 }
 
 static inline void
-dirvote_parse_sr_commits(networkstatus_t *ns, smartlist_t *tokens)
+dirvote_parse_sr_commits(networkstatus_t *ns, const smartlist_t *tokens)
 {
   (void) ns;
   (void) tokens;





More information about the tor-commits mailing list