summaryrefslogtreecommitdiffstats
path: root/modules/http
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-11-15 22:42:17 +0100
committerJeff Trawick <trawick@apache.org>2003-11-15 22:42:17 +0100
commit32044c1ca587b31b8d8343804e66e5415476fafa (patch)
tree07395fb1b5571f51dc880309a66ee3b37bb070ab /modules/http
parentForwardport Kess' fixes (r. 1.1.2.3). (diff)
downloadapache2-32044c1ca587b31b8d8343804e66e5415476fafa.tar.xz
apache2-32044c1ca587b31b8d8343804e66e5415476fafa.zip
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
Diffstat (limited to 'modules/http')
-rw-r--r--modules/http/http_protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c
index 6749f82815..e6c33196cc 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);