summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/dav/main/util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/dav/main/util.c b/modules/dav/main/util.c
index 743bedb43c..ab42af0229 100644
--- a/modules/dav/main/util.c
+++ b/modules/dav/main/util.c
@@ -663,8 +663,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, rv,
- "Invalid percent encoded URI in tagged If-header.");
+ DAV_ERR_IF_TAGGED, rv,
+ "Invalid percent encoded URI in "
+ "tagged If-header.");
}
uri_len = strlen(parsed_uri.path);