[tor-commits] [tor/maint-0.2.4] Fix two more DirServer mentions in log
nickm at torproject.org
nickm at torproject.org
Sun Nov 10 17:24:05 UTC 2013
commit 8bfa596c152603e376b8f096a3367c1d785d6763
Author: Nick Mathewson <nickm at torproject.org>
Date: Sun Nov 10 12:23:56 2013 -0500
Fix two more DirServer mentions in log
---
src/or/router.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/router.c b/src/or/router.c
index 6efd851..eabd9c3 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -955,14 +955,14 @@ init_keys(void)
}
if (ds->type != type) {
log_warn(LD_DIR, "Configured authority type does not match authority "
- "type in DirServer list. Adjusting. (%d v %d)",
+ "type in DirAuthority list. Adjusting. (%d v %d)",
type, ds->type);
ds->type = type;
}
if (v3_digest_set && (ds->type & V3_DIRINFO) &&
tor_memneq(v3_digest, ds->v3_identity_digest, DIGEST_LEN)) {
log_warn(LD_DIR, "V3 identity key does not match identity declared in "
- "DirServer line. Adjusting.");
+ "DirAuthority line. Adjusting.");
memcpy(ds->v3_identity_digest, v3_digest, DIGEST_LEN);
}
More information about the tor-commits
mailing list