blob: 6b75015ccf37e1e7733e85866579d8ebc043cd70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- hashing.c.orig 2023-02-27 19:18:52 UTC
+++ hashing.c
@@ -102,7 +102,7 @@ static void initHashLibs()
LibMhash = 0;
}
}
- LibRhash = dlopen("librhash.so.0",RTLD_NOW);
+ LibRhash = dlopen("librhash.so",RTLD_NOW);
if (LibRhash) {
debugmsg("found librhash\n");
void (*rhash_library_init)() = (void (*)(void)) dlsym(LibRhash,"rhash_library_init");
|