diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-06-19 01:28:40 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-06-22 14:09:43 -0700 |
commit | d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f (patch) | |
tree | 2a1a0cda35b41780c2dfe88c6d46e864d580e2e3 /src/or/connection.c | |
parent | 8a55da57ed17dfb9cefe3193cbda53a15547630e (diff) | |
download | tor-d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f.tar.gz tor-d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f.zip |
Fix minor comment issues
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index a9e3a74ed6..b2412a2a34 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -2751,15 +2751,15 @@ connection_outbuf_too_full(connection_t *conn) return (conn->outbuf_flushlen > 10*CELL_PAYLOAD_SIZE); } -/** Try to flush more bytes onto conn-\>s. +/** Try to flush more bytes onto <b>conn</b>-\>s. * * This function gets called either from conn_write() in main.c * when poll() has declared that conn wants to write, or below * from connection_write_to_buf() when an entire TLS record is ready. * - * Update conn-\>timestamp_lastwritten to now, and call flush_buf + * Update <b>conn</b>-\>timestamp_lastwritten to now, and call flush_buf * or flush_buf_tls appropriately. If it succeeds and there are no more - * more bytes on conn->outbuf, then call connection_finished_flushing + * more bytes on <b>conn</b>-\>outbuf, then call connection_finished_flushing * on it too. * * If <b>force</b>, then write as many bytes as possible, ignoring bandwidth |