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-connectors.git


The following commit(s) were added to refs/heads/main by this push:
     new 73a4cb358 Fix indentation
73a4cb358 is described below

commit 73a4cb3584f21070957780816ba845fa57d441be
Author: Rainer Jung <rainer.j...@kippdata.de>
AuthorDate: Fri May 27 14:21:09 2022 +0200

    Fix indentation
---
 native/common/jk_util.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/native/common/jk_util.c b/native/common/jk_util.c
index 5df4f2a1d..85b6589af 100644
--- a/native/common/jk_util.c
+++ b/native/common/jk_util.c
@@ -2279,9 +2279,9 @@ int jk_servlet_normalize(char *path, jk_logger_t *logger)
             // Wind w back to remove the previous segment
             if (w == 1) {
                 jk_log(logger,
-                        JK_LOG_EMERG,
-                        "[%s] contains a '/../' sequence that tries to escape 
above the root.",
-                        path);
+                       JK_LOG_EMERG,
+                       "[%s] contains a '/../' sequence that tries to escape 
above the root.",
+                       path);
                 return JK_NORMALIZE_TRAVERSAL;
             }
             do {
@@ -2317,7 +2317,7 @@ int jk_strip_session_id(char* path, char* session_name, 
jk_logger_t *logger) {
         int j;
         if (JK_IS_DEBUG_LEVEL(logger)) {
             jk_log(logger, JK_LOG_DEBUG,
-                    "removing session identifier for non servlet uri [%s]", 
path);
+                   "removing session identifier for non servlet uri [%s]", 
path);
         }
         // Found a session path parameter.
         // Need to skip at least as many characters as there are in
@@ -2337,7 +2337,7 @@ int jk_strip_session_id(char* path, char* session_name, 
jk_logger_t *logger) {
 
         if (JK_IS_DEBUG_LEVEL(logger)) {
             jk_log(logger, JK_LOG_DEBUG,
-                    "result of removing session identifier for non servlet uri 
is [%s]", path);
+                   "result of removing session identifier for non servlet uri 
is [%s]", path);
         }
         return 1;
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to