aboutsummaryrefslogtreecommitdiff
path: root/src/or/directory.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2011-02-10 17:11:06 -0500
committerRoger Dingledine <arma@torproject.org>2011-02-10 17:11:06 -0500
commit28de4d83fd59bd656ebcda4442dc10482b8fb00a (patch)
tree1025265ce95172b7165f3607e19474378cc1390a /src/or/directory.c
parent50c259d763c7471588b4e1f242695d2652e4284b (diff)
downloadtor-28de4d83fd59bd656ebcda4442dc10482b8fb00a.tar.gz
tor-28de4d83fd59bd656ebcda4442dc10482b8fb00a.zip
fix the other half of bug 1074
Diffstat (limited to 'src/or/directory.c')
-rw-r--r--src/or/directory.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index 09ebccdc4f..7150fce407 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -1468,9 +1468,10 @@ connection_dir_client_reached_eof(dir_connection_t *conn)
delta>0 ? "ahead" : "behind", dbuf,
delta>0 ? "behind" : "ahead");
skewed = 1; /* don't check the recommended-versions line */
- control_event_general_status(trusted ? LOG_WARN : LOG_NOTICE,
- "CLOCK_SKEW SKEW=%ld SOURCE=DIRSERV:%s:%d",
- delta, conn->_base.address, conn->_base.port);
+ if (trusted)
+ control_event_general_status(LOG_WARN,
+ "CLOCK_SKEW SKEW=%ld SOURCE=DIRSERV:%s:%d",
+ delta, conn->_base.address, conn->_base.port);
} else {
log_debug(LD_HTTP, "Time on received directory is within tolerance; "
"we are %ld seconds skewed. (That's okay.)", delta);