This is an automated email from the ASF dual-hosted git repository.
rjung pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 7b3a825265 Change output of vertical tab in AccessLogValve from "\v"
to "\u000b".
7b3a825265 is described below
commit 7b3a8252652d8f357929752bdf40311c8e8cac79
Author: Rainer Jung <[email protected]>
AuthorDate: Thu Apr 27 09:44:21 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 c0955f0051..49ab94e6c5 100644
--- a/java/org/apache/catalina/valves/AbstractAccessLogValve.java
+++ b/java/org/apache/catalina/valves/AbstractAccessLogValve.java
@@ -1885,9 +1885,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 5b460212bb..695b00dbc2 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]