From 50c9678cea8fd9faa155e0663b88433978c041a5 Mon Sep 17 00:00:00 2001 From: ycdtosa Date: Tue, 29 Nov 2022 14:58:46 +0100 Subject: [PATCH] ftp: update help text of implicit/explicit TLS options to refer to FTPS instead of FTP --- backend/ftp/ftp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/ftp/ftp.go b/backend/ftp/ftp.go index ede6d088a..c68e7dc4a 100644 --- a/backend/ftp/ftp.go +++ b/backend/ftp/ftp.go @@ -70,7 +70,7 @@ func init() { When using implicit FTP over TLS the client connects using TLS right from the start which breaks compatibility with non-TLS-aware servers. This is usually served over port 990 rather -than port 21. Cannot be used in combination with explicit FTP.`, +than port 21. Cannot be used in combination with explicit FTPS.`, Default: false, }, { Name: "explicit_tls", @@ -78,7 +78,7 @@ than port 21. Cannot be used in combination with explicit FTP.`, When using explicit FTP over TLS the client explicitly requests security from the server in order to upgrade a plain text connection -to an encrypted one. Cannot be used in combination with implicit FTP.`, +to an encrypted one. Cannot be used in combination with implicit FTPS.`, Default: false, }, { Name: "concurrency",