Skip to content

Commit b6cf40a

Browse files
committed
Fix GH issue #69
1 parent 5f35973 commit b6cf40a

File tree

1 file changed

+2
-2
lines changed
  • core/src/main/java/org/apache/ftpserver/command/impl

1 file changed

+2
-2
lines changed

core/src/main/java/org/apache/ftpserver/command/impl/AUTH.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public class AUTH extends AbstractCommand {
6363
private static final String TLS_TYPE = "TLS";
6464

6565
/** TLS authentication type */
66-
private static final String TLS_C_TYPE = "TLS_C";
66+
private static final String TLS_C_TYPE = "TLS-C";
6767

6868
/** TLS authentication type */
69-
private static final String TLS_P_TYPE = "TLS_P";
69+
private static final String TLS_P_TYPE = "TLS-P";
7070

7171
/** The valid authentication types */
7272
private static final List<String> VALID_AUTH_TYPES = Arrays.asList(SSL_TYPE, TLS_TYPE, TLS_C_TYPE, TLS_P_TYPE);

0 commit comments

Comments
 (0)