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.
1 parent 0a3bf43 commit 57dda4eCopy full SHA for 57dda4e
2 files changed
src/Config.py
@@ -14,7 +14,7 @@ class Config(object):
14
15
def __init__(self, argv):
16
self.version = "0.7.2"
17
- self.rev = 4548
+ self.rev = 4549
18
self.argv = argv
19
self.action = None
20
self.test_parser = None
src/util/OpensslFindPatch.py
@@ -48,8 +48,8 @@ def getOpensslPath():
48
logging.debug("OpenSSL lib not found in: %s (%s)" % (path, err))
49
50
lib_path = (
51
- ctypes.util.find_library('ssl.so') or ctypes.util.find_library('ssl') or
52
- ctypes.util.find_library('crypto') or ctypes.util.find_library('libcrypto') or 'libeay32'
+ find_library_original('ssl.so') or find_library_original('ssl') or
+ find_library_original('crypto') or find_library_original('libcrypto') or 'libeay32'
53
)
54
55
return lib_path
0 commit comments