Insert missing ! in assert_connection_ok; test was accidentally reversed in revision 1.329 yesterday. Should fix bug 102

svn:r3685
This commit is contained in:
Nick Mathewson 2005-02-24 17:08:27 +00:00
parent 5b24ca6cde
commit 24d7ae6fe8

View File

@ -1576,7 +1576,7 @@ void assert_connection_ok(connection_t *conn, time_t now)
tor_assert(conn->tls);
}
if (CONN_IS_EDGE(conn)) {
if (! CONN_IS_EDGE(conn)) {
tor_assert(!conn->stream_id);
tor_assert(!conn->next_stream);
tor_assert(!conn->cpath_layer);