OSDN Git Service

Ver.1.5.39 Fixed link error master
authorwatanaby <watanaby@users.osdn.jp>
Fri, 23 Aug 2019 01:25:15 +0000 (10:25 +0900)
committerwatanaby <watanaby@users.osdn.jp>
Fri, 23 Aug 2019 01:25:15 +0000 (10:25 +0900)
opengate/doc/Changes.html
opengate/opengatesrv/auth-ftps.c

index 454fc83..0dfa15e 100644 (file)
@@ -802,6 +802,11 @@ Opengate History</H3>
         </DT><DD>
         Added a null pointer check in alarm control.
        </DD>
+       <DT>
+       Ver.1.5.39 at 2019.8.22
+        </DT><DD>
+        Fixed a linker error of undefined reference.
+       </DD>
        
        </DL>
 <P>
index 96d4ce3..aaf4b6e 100644 (file)
@@ -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 ){