diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-11-10 12:23:56 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-11-10 12:23:56 -0500 |
commit | 8bfa596c152603e376b8f096a3367c1d785d6763 (patch) | |
tree | a2ec55b89be7f9502cd7c9619d947a0358a15b6c /src/or | |
parent | 56ac75b265ccd2c5f3e16cd3584ab64c47a77f9e (diff) | |
download | tor-8bfa596c152603e376b8f096a3367c1d785d6763.tar tor-8bfa596c152603e376b8f096a3367c1d785d6763.tar.gz |
Fix two more DirServer mentions in log
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/router.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/router.c b/src/or/router.c index 6efd85158..eabd9c3f5 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); } |