Sfoglia il codice sorgente

* Make sure libressl is loaded correctly. Patch from Zeljko.

(cherry picked from commit ab827e233f9c059e561774b74bda151daaaaca8f)
Michaël Van Canneyt 1 anno fa
parent
commit
ece914d007
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      packages/openssl/src/openssl.pas

+ 1 - 1
packages/openssl/src/openssl.pas

@@ -5827,7 +5827,7 @@ begin
     Result:=LoadLibreSSL;
   if not Result then
     Result:=LoadOpenSSL;
-  if (Not Result) and (LibreSSLSupport=lssFirst) then
+  if (Not Result) and (LibreSSLSupport=lssLast) then
     Result:=LoadLibreSSL;
 {$ENDIF}
 end;