diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-07-06 11:43:26 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-07-06 21:13:26 +0530 |
commit | efad55978bd836380e423faa03503c0f537da3c4 (patch) | |
tree | a2d260df124262f71bad8a720846861344ab65f1 /src/_cffi_src | |
parent | 0a00eaff40e770c4628c444179aa0038c164c7d3 (diff) | |
download | cryptography-efad55978bd836380e423faa03503c0f537da3c4.tar.gz cryptography-efad55978bd836380e423faa03503c0f537da3c4.tar.bz2 cryptography-efad55978bd836380e423faa03503c0f537da3c4.zip |
Make our locking setup function compy with our style guide (#4316)
And not expose an unprefixed name to anyone who dlopens us.
Diffstat (limited to 'src/_cffi_src')
-rw-r--r-- | src/_cffi_src/openssl/callbacks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_cffi_src/openssl/callbacks.py b/src/_cffi_src/openssl/callbacks.py index e215ed4e..13c4e10c 100644 --- a/src/_cffi_src/openssl/callbacks.py +++ b/src/_cffi_src/openssl/callbacks.py @@ -33,7 +33,7 @@ typedef struct { """ FUNCTIONS = """ -int _setup_ssl_threads(void); +int Cryptography_setup_ssl_threads(void); int Cryptography_pem_password_cb(char *, int, int, void *); """ @@ -120,7 +120,7 @@ static void init_mutexes(void) { } -int _setup_ssl_threads(void) { +int Cryptography_setup_ssl_threads(void) { if (_ssl_locks == NULL) { _ssl_locks_count = CRYPTO_num_locks(); _ssl_locks = calloc(_ssl_locks_count, sizeof(Cryptography_mutex)); |