This is an automated email from the ASF dual-hosted git repository.
rjung pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 5759f7887e Change output of vertical tab in AccessLogValve from "\v"
to "\u000b".
5759f7887e is described below
commit 5759f7887e4a291c251651af4e40355d2ddc0639
Author: Rainer Jung <[email protected]>
AuthorDate: Thu Apr 27 09:46:00 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 6bebc34cfa..c285fd7d66 100644
--- a/java/org/apache/catalina/valves/AbstractAccessLogValve.java
+++ b/java/org/apache/catalina/valves/AbstractAccessLogValve.java
@@ -1880,9 +1880,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 05e0dac669..72870aa8df 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: [email protected]
For additional commands, e-mail: [email protected]