Blob Blame History Raw
diff -urNp httrack-3.42.1.orig/src/htsmodules.c httrack-3.42.1/src/htsmodules.c
--- httrack-3.42.1.orig/src/htsmodules.c	2007-02-03 19:05:56.000000000 +0530
+++ httrack-3.42.1/src/htsmodules.c	2007-12-13 02:18:45.000000000 +0530
@@ -263,7 +263,10 @@ void htspe_init(void) {
       handle = LoadLibraryA((char*)"ssleay32");
 #else
       /* We are compatible with 0.9.6/7/8 and potentially above */
-      handle = dlopen("libssl.so.0.9.8", RTLD_LAZY);
+      handle = dlopen("libssl.so.0.9.8g", RTLD_LAZY);
+      if (handle == NULL) {
+        handle = dlopen("libssl.so.0.9.8b", RTLD_LAZY);
+      }
       if (handle == NULL) {
         handle = dlopen("libssl.so.0.9.7", RTLD_LAZY);
       }