From: Nick Mathewson Date: Sun, 18 Jun 2006 21:15:01 +0000 (+0000) Subject: Fix an assert that still isnt the assert we are hunting. X-Git-Tag: tor-0.1.1.23~184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2552d5e60fbbaf80f5dfe1ef672e166f524d6847;p=thirdparty%2Ftor.git Fix an assert that still isnt the assert we are hunting. svn:r6662 --- diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 2421d6ff98..0a6a9b4b86 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -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) {