[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r11820: i heard that users know the phrase 'system clock' better tha (tor/trunk/src/or)
Author: arma
Date: 2007-10-09 17:11:16 -0400 (Tue, 09 Oct 2007)
New Revision: 11820
Modified:
tor/trunk/src/or/circuitbuild.c
tor/trunk/src/or/networkstatus.c
Log:
i heard that users know the phrase 'system clock' better than 'clock'. hm.
Modified: tor/trunk/src/or/circuitbuild.c
===================================================================
--- tor/trunk/src/or/circuitbuild.c 2007-10-09 21:02:32 UTC (rev 11819)
+++ tor/trunk/src/or/circuitbuild.c 2007-10-09 21:11:16 UTC (rev 11820)
@@ -686,7 +686,7 @@
circuit_note_clock_jumped(int seconds_elapsed)
{
int severity = server_mode(get_options()) ? LOG_WARN : LOG_NOTICE;
- log(severity, LD_GENERAL, "Your clock just jumped %d seconds %s; "
+ log(severity, LD_GENERAL, "Your system clock just jumped %d seconds %s; "
"assuming established circuits no longer work.",
seconds_elapsed >=0 ? seconds_elapsed : -seconds_elapsed,
seconds_elapsed >=0 ? "forward" : "backward");
Modified: tor/trunk/src/or/networkstatus.c
===================================================================
--- tor/trunk/src/or/networkstatus.c 2007-10-09 21:02:32 UTC (rev 11819)
+++ tor/trunk/src/or/networkstatus.c 2007-10-09 21:11:16 UTC (rev 11820)
@@ -219,7 +219,7 @@
}
/** Add the parsed neworkstatus in <b>ns</b> (with original document in
- * <b>s</b> to the disk cache (and the in-memory directory server cache) as
+ * <b>s</b>) to the disk cache (and the in-memory directory server cache) as
* appropriate. */
static int
add_networkstatus_to_cache(const char *s,
@@ -308,7 +308,7 @@
if (ns->published_on > now + NETWORKSTATUS_ALLOW_SKEW) {
log_warn(LD_GENERAL, "Network status from %s was published in the future "
- "(%s GMT). Somebody is skewed here: check your clock. "
+ "(%s GMT). Check your system clock! "
"Not caching.",
source_desc, published);
control_event_general_status(LOG_WARN,