Skip to content
Snippets Groups Projects
Commit c9c8072b authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

r11569@Kushana: nickm | 2006-12-13 17:59:58 -0500

 fix last fix


svn:r9106
parent 43e06eba
No related branches found
No related tags found
No related merge requests found
......@@ -661,7 +661,7 @@ flush_buf_tls_impl(tor_tls_t *tls, buf_t *buf, size_t sz, size_t *buf_flushlen)
size_t forced;
forced = tor_tls_get_forced_write_size(tls);
if (forced < sz)
if (forced > sz)
sz = forced;
r = tor_tls_write(tls, buf->cur, sz);
if (r < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment