tab/whitespace fixes in bufferevent_sock.c

Also note that write() doesn't usually say 0.

svn:r1414
This commit is contained in:
Nick Mathewson 2009-08-14 20:06:48 +00:00
parent bd26bace0d
commit eff09a299c

View File

@ -209,7 +209,10 @@ bufferevent_writecb(evutil_socket_t fd, short event, void *arg)
goto reschedule;
what |= BEV_EVENT_ERROR;
} else if (res == 0) {
/* eof case */
/* eof case
XXXX Actually, a 0 on write doesn't indicate
an EOF. An ECONNRESET might be more typical.
*/
what |= BEV_EVENT_EOF;
}
if (res <= 0)