From: Jeff Trawick Date: Sat, 15 Nov 2003 21:42:17 +0000 (+0000) Subject: fix the EBCDIC path in send_all_header_fields() to actually return something X-Git-Tag: pre_ajp_proxy~1045 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32044c1ca587b31b8d8343804e66e5415476fafa;p=thirdparty%2Fapache%2Fhttpd.git fix the EBCDIC path in send_all_header_fields() to actually return something the caller ignores it, but still... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101784 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 6749f828156..e6c33196ccd 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1212,7 +1212,7 @@ static apr_status_t send_all_header_fields(header_struct *h, apr_size_t len; char *tmp = apr_pstrcatv(r->pool, vec, vec_next - vec, &len); ap_xlate_proto_to_ascii(tmp, len); - apr_brigade_write(h->bb, NULL, NULL, tmp, len); + return apr_brigade_write(h->bb, NULL, NULL, tmp, len); } #else return apr_brigade_writev(h->bb, NULL, NULL, vec, vec_next - vec);