]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix an assert that still isnt the assert we are hunting.
authorNick Mathewson <nickm@torproject.org>
Sun, 18 Jun 2006 21:15:01 +0000 (21:15 +0000)
committerNick Mathewson <nickm@torproject.org>
Sun, 18 Jun 2006 21:15:01 +0000 (21:15 +0000)
svn:r6662

src/or/dirserv.c

index 2421d6ff9878e7ce9b903303f6b42feac8e0bfbf..0a6a9b4b867c147b739af1d857c278e72c7acf05 100644 (file)
@@ -1843,7 +1843,7 @@ connection_dirserv_flushed_some(connection_t *conn)
   tor_assert(conn->state == DIR_CONN_STATE_SERVER_WRITING);
 
   if (conn->dir_refresh_src == DIR_REFRESH_NONE
-      || buf_datalen(conn->outbuf) > DIRSERV_BUFFER_MIN)
+      || buf_datalen(conn->outbuf) >= DIRSERV_BUFFER_MIN)
     return 0;
 
   switch (conn->dir_refresh_src) {