diff options
Diffstat (limited to 'cryptography/hazmat/bindings/commoncrypto/binding.py')
-rw-r--r-- | cryptography/hazmat/bindings/commoncrypto/binding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/commoncrypto/binding.py b/cryptography/hazmat/bindings/commoncrypto/binding.py index e23a2fd9..0e6dffc0 100644 --- a/cryptography/hazmat/bindings/commoncrypto/binding.py +++ b/cryptography/hazmat/bindings/commoncrypto/binding.py @@ -13,7 +13,7 @@ from __future__ import absolute_import, division, print_function -from cryptography.hazmat.bindings.utils import build_ffi +from cryptography.hazmat.bindings.utils import build_ffi_for_binding class Binding(object): @@ -45,7 +45,7 @@ class Binding(object): if cls.ffi is not None and cls.lib is not None: return - cls.ffi, cls.lib = build_ffi( + cls.ffi, cls.lib = build_ffi_for_binding( module_prefix=cls._module_prefix, modules=cls._modules, extra_link_args=[ |