From: watanaby Date: Fri, 23 Aug 2019 01:25:15 +0000 (+0900) Subject: Ver.1.5.39 Fixed link error X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=opengate%2Fopengate.git Ver.1.5.39 Fixed link error --- diff --git a/opengate/doc/Changes.html b/opengate/doc/Changes.html index 454fc83..0dfa15e 100644 --- a/opengate/doc/Changes.html +++ b/opengate/doc/Changes.html @@ -802,6 +802,11 @@ Opengate History
Added a null pointer check in alarm control.
+
+ Ver.1.5.39 at 2019.8.22 +
+ Fixed a linker error of undefined reference. +

diff --git a/opengate/opengatesrv/auth-ftps.c b/opengate/opengatesrv/auth-ftps.c index 96d4ce3..aaf4b6e 100644 --- a/opengate/opengatesrv/auth-ftps.c +++ b/opengate/opengatesrv/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 ){