From 87e54f2dde4899ce9000b3d6ae248ca0f184f8c8 Mon Sep 17 00:00:00 2001 From: edwardxml <56691903+edwardxml@users.noreply.github.com> Date: Wed, 28 Oct 2020 15:45:52 +0000 Subject: [PATCH] ftp: update wording for flags Minor wording change to help for explicit and implicit FTPS flags. More consistent between flags. Add 's' to request because only one 'client' mentioned. --- backend/ftp/ftp.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/ftp/ftp.go b/backend/ftp/ftp.go index 73148da55..19a502103 100644 --- a/backend/ftp/ftp.go +++ b/backend/ftp/ftp.go @@ -57,16 +57,16 @@ func init() { Required: true, }, { Name: "tls", - Help: `Use FTPS over TLS (Implicit) -When using implicit FTP over TLS the client will connect using TLS -right from the start, which in turn breaks the compatibility with + Help: `Use Implicit FTPS (FTP over TLS) +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.`, Default: false, }, { Name: "explicit_tls", - Help: `Use FTP over TLS (Explicit) -When using explicit FTP over TLS the client explicitly request + Help: `Use Explicit FTPS (FTP over TLS) +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.`, Default: false,