From: Ryan Bloom Date: Thu, 2 Aug 2001 16:35:22 +0000 (+0000) Subject: I forgot to catch all the other return calls in this function, so this X-Git-Tag: 2.0.23~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9289e63f0558ebb7acf2d7187001114df3c37f82;p=apache I forgot to catch all the other return calls in this function, so this cleans up the warnings. Thanks OtherBill for beating me up about this. :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89876 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index fa822d9985..f3251b3619 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -2466,7 +2466,7 @@ static apr_status_t send_parsed_content(apr_bucket_brigade **bb, (tmp_dptr != APR_BRIGADE_SENTINEL(*bb))); } - return; + return APR_SUCCESS; } /* Can't destroy the tag buckets until I'm done processing @@ -2609,6 +2609,7 @@ static apr_status_t send_parsed_content(apr_bucket_brigade **bb, ctx->bytes_parsed = 0; } } + return APR_SUCCESS; } /*****************************************************************