aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-02-02 00:19:09 +0000
committerRoger Dingledine <arma@torproject.org>2005-02-02 00:19:09 +0000
commit0f5a19802877d0dee6dd5c7cf658b882022264ce (patch)
tree28c1b8142a9dd1e21e73760a329d1e46e792f508 /src/or/main.c
parentb2e34616d3ed57a1a50d98890ef35ee82f942dbf (diff)
downloadtor-0f5a19802877d0dee6dd5c7cf658b882022264ce.tar
tor-0f5a19802877d0dee6dd5c7cf658b882022264ce.tar.gz
sometimes, a conn on the closeable_lst gets absolutely
clobbered. maybe this will help me find out why. svn:r3498
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 20c6e3403..31e3d2bd3 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -203,6 +203,7 @@ add_connection_to_closeable_list(connection_t *conn)
{
tor_assert(!smartlist_isin(closeable_connection_lst, conn));
tor_assert(conn->marked_for_close);
+ assert_connection_ok(conn, time(NULL));
smartlist_add(closeable_connection_lst, conn);
}