diff options
author | Roger Dingledine <arma@torproject.org> | 2007-06-09 07:05:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-06-09 07:05:19 +0000 |
commit | a97c3b8c2da5d1f1e0ac793e7ad79b8288a87bc3 (patch) | |
tree | 9d36eb6c00798193c27192fba6bfc34ab2e0775c /src/or/config.c | |
parent | 8dfde75ef68afe952058aa938f53707f98b9178c (diff) | |
download | tor-a97c3b8c2da5d1f1e0ac793e7ad79b8288a87bc3.tar.gz tor-a97c3b8c2da5d1f1e0ac793e7ad79b8288a87bc3.zip |
Be clearer on the various roles for auth dir types.
Bridge authorities no longer write bridge descriptors to their
cached-routers file -- this gets complex because of extrainfo documents.
svn:r10545
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 97e1a50020..1a04c311e7 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3713,7 +3713,8 @@ parse_dir_server_line(const char *line, int validate_only) fingerprint = smartlist_join_strings(items, "", 0, NULL); if (strlen(fingerprint) != HEX_DIGEST_LEN) { - log_warn(LD_CONFIG, "Key digest for DirServer is wrong length."); + log_warn(LD_CONFIG, "Key digest for DirServer is wrong length %d.", + (int)strlen(fingerprint)); goto err; } if (base16_decode(digest, DIGEST_LEN, fingerprint, HEX_DIGEST_LEN)<0) { |