Skip to content

Commit

Permalink
Fix missing braken (introduced with previous commit)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4e7a14b)
  • Loading branch information
bogdan-iancu committed Jun 13, 2017
1 parent 8b7d2e2 commit e79a62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/proto_hep/proto_hep.c
Expand Up @@ -858,7 +858,7 @@ int tcp_read(struct tcp_connection *c,struct tcp_req *r) {
if(bytes_read==-1){
if (errno == EWOULDBLOCK || errno == EAGAIN){
return 0; /* nothing has been read */
} else if (errno == EINTR)
} else if (errno == EINTR) {
goto again;
} else if (errno == ECONNRESET) {
c->state=S_CONN_EOF;
Expand Down

0 comments on commit e79a62c

Please sign in to comment.