Euhm, revert last commit.

This commit is contained in:
Joris Vink 2014-08-01 10:33:26 +02:00
parent cee7d34020
commit a2a87adf19
1 changed files with 0 additions and 2 deletions

View File

@ -150,7 +150,6 @@ net_send(struct connection *c)
switch (errno) {
case EINTR:
case EAGAIN:
case EWOULDBLOCK:
c->flags &= ~CONN_WRITE_POSSIBLE;
return (KORE_RESULT_OK);
default:
@ -229,7 +228,6 @@ net_recv(struct connection *c)
switch (errno) {
case EINTR:
case EAGAIN:
case EWOULDBLOCK:
c->flags &= ~CONN_READ_POSSIBLE;
return (KORE_RESULT_OK);
default: