This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 1.3.x
in repository https://gitbox.apache.org/repos/asf/tomcat-native.git


The following commit(s) were added to refs/heads/1.3.x by this push:
     new 07f8ff7f4 Fix copy/paste error
07f8ff7f4 is described below

commit 07f8ff7f448ef4efb241a12d6735cc62c24a0596
Author: Mark Thomas <[email protected]>
AuthorDate: Thu Aug 27 14:31:24 2026 +0100

    Fix copy/paste error
---
 native/os/unix/uxpipe.c  | 2 +-
 native/os/win32/ntpipe.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/native/os/unix/uxpipe.c b/native/os/unix/uxpipe.c
index 69a7ddcb0..659186528 100644
--- a/native/os/unix/uxpipe.c
+++ b/native/os/unix/uxpipe.c
@@ -36,7 +36,7 @@ static volatile apr_uint32_t uxp_accepted = 0;
 
 void uxp_network_dump_statistics()
 {
-    fprintf(stderr, "NT Network Statistics ..\n");
+    fprintf(stderr, "Unix Network Statistics ..\n");
     fprintf(stderr, "Sockets created         : %d\n", uxp_created);
     fprintf(stderr, "Sockets accepted        : %d\n", uxp_accepted);
     fprintf(stderr, "Sockets closed          : %d\n", uxp_closed);
diff --git a/native/os/win32/ntpipe.c b/native/os/win32/ntpipe.c
index 544756736..38507727f 100644
--- a/native/os/win32/ntpipe.c
+++ b/native/os/win32/ntpipe.c
@@ -41,7 +41,7 @@ static volatile apr_uint32_t ntp_accepted = 0;
 
 void ntp_network_dump_statistics()
 {
-    fprintf(stderr, "NT Network Statistics ..\n");
+    fprintf(stderr, "Windows Network Statistics ..\n");
     fprintf(stderr, "Sockets created         : %d\n", ntp_created);
     fprintf(stderr, "Sockets accepted        : %d\n", ntp_accepted);
     fprintf(stderr, "Sockets closed          : %d\n", ntp_closed);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to