mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
c8982c015c
fixes #20458
12 lines
438 B
Diff
12 lines
438 B
Diff
diff --git a/salt/utils/rsax931.py b/salt/utils/rsax931.py
|
|
index 9eb1f4a..d764f7a 100644
|
|
--- a/salt/utils/rsax931.py
|
|
+++ b/salt/utils/rsax931.py
|
|
@@ -36,7 +36,6 @@ def _load_libcrypto():
|
|
'libcrypto.so*'))
|
|
lib = lib[0] if len(lib) > 0 else None
|
|
- if lib:
|
|
- return cdll.LoadLibrary(lib)
|
|
+ return cdll.LoadLibrary('@libcrypto@')
|
|
raise OSError('Cannot locate OpenSSL libcrypto')
|