diff options
author | Rainer Jung <rjung@apache.org> | 2013-06-28 00:25:56 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2013-06-28 00:25:56 +0200 |
commit | 5dde0f74caccc2ed52df72d72856db3435969e51 (patch) | |
tree | de7151a9848966352c40a8b147037daf6fc51fdb /modules/dav | |
parent | possibly improve the description of <code>none</code> added in r1497371 (diff) | |
download | apache2-5dde0f74caccc2ed52df72d72856db3435969e51.tar.xz apache2-5dde0f74caccc2ed52df72d72856db3435969e51.zip |
Fix indentation (plus now needed line-wrap).
Followup to r1470940.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1497588 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav')
-rw-r--r-- | modules/dav/main/util.c | 5 |
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); |