diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-06 01:43:37 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-06 01:43:37 +0000 |
commit | 6c9d78b319dd883afd17d29829b3bdc017b07189 (patch) | |
tree | 7eb91a290f51f3f9ea99d0b5261db4bd74f9bf02 /src/or/cpuworker.c | |
parent | 1e5b7bc6f1ad8c2d419f6e4a78b314ae3480033e (diff) | |
download | tor-6c9d78b319dd883afd17d29829b3bdc017b07189.tar.gz tor-6c9d78b319dd883afd17d29829b3bdc017b07189.zip |
stop asserting that computers always go forward in time
it's simply not true
svn:r1236
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r-- | src/or/cpuworker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 2e80f72d43..77e185fdf2 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -58,12 +58,12 @@ int connection_cpu_process_inbuf(connection_t *conn) { assert(conn && conn->type == CONN_TYPE_CPUWORKER); if(conn->inbuf_reached_eof) { - log_fn(LOG_WARN,"Read eof. Worker has died."); + log_fn(LOG_WARN,"Read eof. Worker died unexpectedly."); if(conn->state != CPUWORKER_STATE_IDLE) { /* the circ associated with this cpuworker will have to wait until * it gets culled in run_connection_housekeeping(), since we have * no way to find out which circ it was. */ - log_fn(LOG_WARN,"...and leaving a circuit waiting. Oh well."); + log_fn(LOG_WARN,"...and it left a circuit queued; abandoning circ."); num_cpuworkers_busy--; } num_cpuworkers--; |