Skip to content

Commit

Permalink
Rev4549, Fix startup OpenSSL lib find recursion error
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcutme committed Nov 9, 2020
1 parent 0a3bf43 commit 57dda4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Config(object):

def __init__(self, argv):
self.version = "0.7.2"
self.rev = 4548
self.rev = 4549
self.argv = argv
self.action = None
self.test_parser = None
Expand Down
4 changes: 2 additions & 2 deletions src/util/OpensslFindPatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def getOpensslPath():
logging.debug("OpenSSL lib not found in: %s (%s)" % (path, err))

lib_path = (
ctypes.util.find_library('ssl.so') or ctypes.util.find_library('ssl') or
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'
)

return lib_path
Expand Down

0 comments on commit 57dda4e

Please sign in to comment.