We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3426d5f + 33af83b commit 53a6063Copy full SHA for 53a6063
src/util/OpensslFindPatch.py
@@ -42,7 +42,7 @@ def getOpensslPath():
42
lib_dir_paths = os.environ["LD_LIBRARY_PATH"].split(":")
43
for path in lib_dir_paths:
44
try:
45
- return [lib for lib in os.listdir(path) if "libcrypto.so.1.0" in lib][0]
+ return [lib for lib in os.listdir(path) if "libcrypto.so" in lib][0]
46
except Exception as err:
47
logging.debug("OpenSSL lib not found in: %s (%s)" % (path, err))
48
0 commit comments