Guest User

Untitled

a guest
May 20th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. index 01e2358..0725ed8 100644
  2. --- a/src/or/dirvote.c
  3. +++ b/src/or/dirvote.c
  4. @@ -2794,8 +2794,13 @@ dirvote_fetch_missing_votes(void)
  5. smartlist_free(missing_fps);
  6. return;
  7. }
  8. - log_notice(LOG_NOTICE, "We're missing votes from %d authorities. Asking "
  9. - "every other authority for a copy.", smartlist_len(missing_fps));
  10. + {
  11. + char *tmp = smartlist_join_strings(missing_fps, " ", 0, NULL);
  12. + log_notice(LOG_NOTICE, "We're missing votes from %d authorities (%s). "
  13. + "Asking every other authority for a copy.",
  14. + smartlist_len(missing_fps), tmp);
  15. + tor_free(tmp);
  16. + }
  17. resource = smartlist_join_strings(missing_fps, "+", 0, NULL);
  18. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE,
  19. 0, resource);
Add Comment
Please, Sign In to add comment