mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix an assert that still isnt the assert we are hunting.
svn:r6662
This commit is contained in:
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user