From: Nick Mathewson Date: Thu, 23 Apr 2009 06:27:58 +0000 (+0000) Subject: Add missing case to make http.c compile with warnings enabled. X-Git-Tag: release-2.0.3-alpha~279 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5c9589fb0a37bdbe101a05256ec93eaa865ea6f;p=libevent Add missing case to make http.c compile with warnings enabled. svn:r1232 --- diff --git a/http.c b/http.c index 51d7f16e..d5a0b8ee 100644 --- a/http.c +++ b/http.c @@ -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;