diff options
author | Péter Dimitrov <[email protected]> | 2018-03-21 14:53:56 +0100 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2018-03-28 10:19:38 +0200 |
commit | 8bccc0bab9fce7ef00f64965b308ef9328e594fa (patch) | |
tree | dc4c34131f26d8fb2dd0040b4ab9a7de0924f5bf /lib/ftp/src | |
parent | f3458d831769ed7c37362eeaea780f218922cfab (diff) | |
download | otp-8bccc0bab9fce7ef00f64965b308ef9328e594fa.tar.gz otp-8bccc0bab9fce7ef00f64965b308ef9328e594fa.tar.bz2 otp-8bccc0bab9fce7ef00f64965b308ef9328e594fa.zip |
ftp: Fix ftp test suite
- vsftpd =< 3.0.2 does not support ECDHE ciphers and the ssl application
removed ciphers with RSA key exchange from its default cipher list.
To allow interoperability with old versions of vsftpd, cipher suites
with RSA key exchange are appended to the default cipher list.
- Fix regex in ftp.appup.src
Change-Id: I53ce3b7f198ae95825eb0b5d39e94bdcebe78391
Diffstat (limited to 'lib/ftp/src')
-rw-r--r-- | lib/ftp/src/ftp.appup.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ftp/src/ftp.appup.src b/lib/ftp/src/ftp.appup.src index f5798ef976..d79c7b60ff 100644 --- a/lib/ftp/src/ftp.appup.src +++ b/lib/ftp/src/ftp.appup.src @@ -18,9 +18,9 @@ %% %CopyrightEnd% {"%VSN%", [ - {<<"*">>,[{restart_application, ftp}]} + {<<".*">>,[{restart_application, ftp}]} ], [ - {<<"*">>,[{restart_application, ftp}]} + {<<".*">>,[{restart_application, ftp}]} ] }. |