This is an automated email from the ASF dual-hosted git repository.
elecharny pushed a commit to branch 1.2.X
in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git
The following commit(s) were added to refs/heads/1.2.X by this push:
new b6cf40a8 Fix GH issue #69
b6cf40a8 is described below
commit b6cf40a82d96f3db5986f9176ff5ead741b1dd2b
Author: emmanuel lecharny <[email protected]>
AuthorDate: Thu Mar 13 17:35:16 2025 +0100
Fix GH issue #69
---
core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java
b/core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java
index bd9f377e..6c79c889 100644
--- a/core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java
+++ b/core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java
@@ -63,10 +63,10 @@ public class AUTH extends AbstractCommand {
private static final String TLS_TYPE = "TLS";
/** TLS authentication type */
- private static final String TLS_C_TYPE = "TLS_C";
+ private static final String TLS_C_TYPE = "TLS-C";
/** TLS authentication type */
- private static final String TLS_P_TYPE = "TLS_P";
+ private static final String TLS_P_TYPE = "TLS-P";
/** The valid authentication types */
private static final List<String> VALID_AUTH_TYPES =
Arrays.asList(SSL_TYPE, TLS_TYPE, TLS_C_TYPE, TLS_P_TYPE);