diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-07-01 09:38:41 +1000 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-07-01 14:00:07 +1000 |
commit | b4dcf56768e4b8c27fdade8f5f936dd7c651aeb0 (patch) | |
tree | 6196833d840dad03f3c1434c441cead60e89f978 /src/or/routerlist.c | |
parent | 596ccbf8396b10fb404594c201bd04ef135b330f (diff) | |
download | tor-b4dcf56768e4b8c27fdade8f5f936dd7c651aeb0.tar.gz tor-b4dcf56768e4b8c27fdade8f5f936dd7c651aeb0.zip |
Hex-encode raw digest before printing in authority_certs_fetch_missing
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 296dbd8b0e..6ad276a913 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1038,7 +1038,8 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now, if (!rs) { log_warn(LD_BUG, "Directory %s delivered a consensus, but a " - "routerstatus could not be found for it.", dir_hint); + "routerstatus could not be found for it.", + hex_str(dir_hint, DIGEST_LEN)); } } |