forked from mirrors/nixpkgs
Merge pull request #153529 from dmacvicar/patch-1
This commit is contained in:
commit
26b9c9800a
|
@ -1,13 +1,13 @@
|
|||
diff --git a/salt/utils/rsax931.py b/salt/utils/rsax931.py
|
||||
index f827cc6db8..b728595186 100644
|
||||
--- a/salt/utils/rsax931.py
|
||||
+++ b/salt/utils/rsax931.py
|
||||
@@ -74,7 +74,7 @@
|
||||
--- a/salt/utils/rsax931.py 2021-11-24 00:39:57.940790184 +0100
|
||||
+++ b/salt/utils/rsax931.py 2021-11-24 00:38:35.436728341 +0100
|
||||
@@ -85,6 +85,10 @@
|
||||
"""
|
||||
Attempt to load libcrypto.
|
||||
"""
|
||||
- return cdll.LoadLibrary(_find_libcrypto())
|
||||
+ return cdll.LoadLibrary('@libcrypto@')
|
||||
+ try:
|
||||
+ return cdll.LoadLibrary('@libcrypto@')
|
||||
+ except OSError:
|
||||
+ pass
|
||||
return cdll.LoadLibrary(_find_libcrypto())
|
||||
|
||||
|
||||
def _init_libcrypto():
|
||||
|
|
Loading…
Reference in a new issue