diff options
author | Roger Dingledine <arma@torproject.org> | 2004-02-28 07:51:30 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-02-28 07:51:30 +0000 |
commit | cec2eee5337d1db8ef3873896382739a47f93ddc (patch) | |
tree | 21797a622c1da900fdbab507702808c3dd08576b /src | |
parent | 70c43e152a076ca7de4226f8ac9291b7d8840741 (diff) | |
download | tor-cec2eee5337d1db8ef3873896382739a47f93ddc.tar tor-cec2eee5337d1db8ef3873896382739a47f93ddc.tar.gz |
enable assert_connection_ok()
we weren't actually asserting much. oops.
svn:r1160
Diffstat (limited to 'src')
-rw-r--r-- | src/or/connection.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 6728ae5e3..8edfe8ed1 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -805,7 +805,6 @@ void assert_connection_ok(connection_t *conn, time_t now) { assert(conn); assert(conn->magic == CONNECTION_MAGIC); - return; /* XXX !!! */ assert(conn->type >= _CONN_TYPE_MIN); assert(conn->type <= _CONN_TYPE_MAX); |