From d68b128fcdcc69ebd441a0ed07fb24660c8ec9d4 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Thu, 27 Jun 2013 22:35:39 +0000 Subject: [PATCH] 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 --- modules/dav/main/util.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 2.47.3