Browse Source

* Write not-loaded functions in case of load fail

git-svn-id: trunk@32805 -
michael 9 years ago
parent
commit
602cce97ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/openssl/examples/test1.pas

+ 1 - 1
packages/openssl/examples/test1.pas

@@ -9,6 +9,6 @@ begin
   if InitSSLInterface then
     Writeln('Success')
   else
-    Writeln('Holy shit!');
+    Writeln('Load failed, missing functions: ',OpenSSL_unavailable_functions);
 end.