[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] Insert missing ! in assert_connection_ok; test was accident...



Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv21362/src/or

Modified Files:
	connection.c 
Log Message:
Insert missing ! in assert_connection_ok; test was accidentally reversed in revision 1.329 yesterday. Should fix bug 102

Index: connection.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/connection.c,v
retrieving revision 1.329
retrieving revision 1.330
diff -u -d -r1.329 -r1.330
--- connection.c	23 Feb 2005 20:35:26 -0000	1.329
+++ connection.c	24 Feb 2005 17:08:27 -0000	1.330
@@ -1576,7 +1576,7 @@
       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);