Add missing case to make http.c compile with warnings enabled.

svn:r1232
This commit is contained in:
Nick Mathewson 2009-04-23 06:27:58 +00:00
parent 9516df0e2e
commit c5c9589fb0

1
http.c
View File

@ -808,6 +808,7 @@ evhttp_read_trailer(struct evhttp_connection *evcon, struct evhttp_request *req)
evhttp_connection_done(evcon);
break;
case MORE_DATA_EXPECTED:
case REQUEST_CANCELED: /* ??? */
default:
bufferevent_enable(evcon->bufev, EV_READ);
break;