]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix the EBCDIC path in send_all_header_fields() to actually return something
authorJeff Trawick <trawick@apache.org>
Sat, 15 Nov 2003 21:42:17 +0000 (21:42 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 15 Nov 2003 21:42:17 +0000 (21:42 +0000)
the caller ignores it, but still...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101784 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index 6749f828156e5af6124504f1ec26937ebb861af1..e6c33196ccd6648681a274b18f58faf456d93030 100644 (file)
@@ -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);