Submitted by: Dan Rall <dlr collab.net>
* modules/dav/main/mod_dav.c
(dav_error_response, dav_error_response_tag): Remove redundant assignment
of r->status_line which is handled by basic_http_header_check().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@377292
13f79535-47bb-0310-9956-
ffa450edef68
{
r->status = status;
- /* ### I really don't think this is needed; gotta test */
- r->status_line = ap_get_status_line(status);
-
ap_set_content_type(r, "text/html");
/* begin the response now... */
{
r->status = err->status;
- /* ### I really don't think this is needed; gotta test */
- r->status_line = ap_get_status_line(err->status);
-
ap_set_content_type(r, DAV_XML_CONTENT_TYPE);
ap_rputs(DAV_XML_HEADER DEBUG_CR