From: Rainer Jung Date: Thu, 27 Jun 2013 22:35:39 +0000 (+0000) Subject: Fix indentation (plus now needed line-wrap). X-Git-Tag: 2.2.25~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d68b128fcdcc69ebd441a0ed07fb24660c8ec9d4;p=thirdparty%2Fapache%2Fhttpd.git Fix indentation (plus now needed line-wrap). No functional change. Followup to r1497435. Backport of r1497588 (trunk) resp. r1486454 (2.4.x). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1497594 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/main/util.c b/modules/dav/main/util.c index 3fd2b86026b..4b6bdee4e26 100644 --- a/modules/dav/main/util.c +++ b/modules/dav/main/util.c @@ -638,8 +638,9 @@ static dav_error * dav_process_if_header(request_rec *r, dav_if_header **p_ih) /* the resources we will compare to have unencoded paths */ if (ap_unescape_url(parsed_uri.path) != OK) { return dav_new_error(r->pool, HTTP_BAD_REQUEST, - DAV_ERR_IF_TAGGED, - "Invalid percent encoded URI in tagged If-header."); + DAV_ERR_IF_TAGGED, + "Invalid percent encoded URI in " + "tagged If-header."); } uri_len = strlen(parsed_uri.path);