This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new d11e8c30f0 Change output of vertical tab in AccessLogValve from "\v" to "\u000b". d11e8c30f0 is described below commit d11e8c30f05ce23797f4f8fb8966c1d0dac29278 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Thu Apr 27 09:46:28 2023 +0200 Change output of vertical tab in AccessLogValve from "\v" to "\u000b". --- java/org/apache/catalina/valves/AbstractAccessLogValve.java | 3 --- webapps/docs/changelog.xml | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/java/org/apache/catalina/valves/AbstractAccessLogValve.java b/java/org/apache/catalina/valves/AbstractAccessLogValve.java index cfe5b7000f..e2f50f83eb 100644 --- a/java/org/apache/catalina/valves/AbstractAccessLogValve.java +++ b/java/org/apache/catalina/valves/AbstractAccessLogValve.java @@ -1889,9 +1889,6 @@ public abstract class AbstractAccessLogValve extends ValveBase implements Access case '\t': dest.append("\\t"); break; - case '\u000b': - dest.append("\\v"); - break; default: // Control, delete (127) or above 127 if (c < 32 || c > 126) { diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 687386346c..85d425e699 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -116,6 +116,10 @@ <code>SimpleDateFormat</code> is used which contains verbatim characters that need escaping. (rjung) </fix> + <update> + Change output of vertical tab in <code>AccessLogValve</code> from + <code>\v</code> to <code>\u000b</code>. (rjung) + </update> </changelog> </subsection> <subsection name="Coyote"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org