From: watanaby Date: Fri, 23 Aug 2019 01:27:26 +0000 (+0900) Subject: Fixed link error X-Git-Url: http://git.osdn.net/view?p=opengatem%2Fopengatem.git;a=commitdiff_plain;h=HEAD Fixed link error --- diff --git a/doc/Changes.html b/doc/Changes.html index c6e1587..028c8d1 100644 --- a/doc/Changes.html +++ b/doc/Changes.html @@ -291,6 +291,10 @@ OpengateM History
Fixed error at ndp request (opengatemmng).
+
Ver.1.1.5 at 2019.08.22 +
+ Fixed a linker error of undefined reference (opengatemmng). +

diff --git a/mngsrc/auth-ftps.c b/mngsrc/auth-ftps.c index e829552..0343819 100644 --- a/mngsrc/auth-ftps.c +++ b/mngsrc/auth-ftps.c @@ -220,7 +220,7 @@ int authFtpsi(char *userid, char *passwd) /* ----------------------------------------------- */ /* prepare SSL */ SSLeay_add_ssl_algorithms(); - meth = SSLv2_client_method(); + meth = SSLv23_client_method(); SSL_load_error_strings(); ctx = SSL_CTX_new (meth); if( ctx == NULL ){