aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-10-19 19:50:21 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-10-20 07:50:21 +0800
commitdbe203a37b8956f4d194798859d41a421d02542e (patch)
treebe8c418a0c5bff191a09cacef693a427bb209252 /src
parentc453041ad2fc0e36592ea200618e7db50df65a9e (diff)
downloadcryptography-dbe203a37b8956f4d194798859d41a421d02542e.tar.gz
cryptography-dbe203a37b8956f4d194798859d41a421d02542e.tar.bz2
cryptography-dbe203a37b8956f4d194798859d41a421d02542e.zip
Test against libressl 3.0 (#5031)
* Test against libressl 3.0 * Correctly type these ints
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/callbacks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_cffi_src/openssl/callbacks.py b/src/_cffi_src/openssl/callbacks.py
index 75c62016..8ee01e0e 100644
--- a/src/_cffi_src/openssl/callbacks.py
+++ b/src/_cffi_src/openssl/callbacks.py
@@ -81,7 +81,7 @@ static inline void cryptography_mutex_unlock(Cryptography_mutex *mutex) {
#endif
-static unsigned int _ssl_locks_count = 0;
+static int _ssl_locks_count = 0;
static Cryptography_mutex *_ssl_locks = NULL;
static void _ssl_thread_locking_function(int mode, int n, const char *file,
@@ -101,7 +101,7 @@ static void _ssl_thread_locking_function(int mode, int n, const char *file,
*/
if ((_ssl_locks == NULL) ||
- (n < 0) || ((unsigned)n >= _ssl_locks_count)) {
+ (n < 0) || (n >= _ssl_locks_count)) {
return;
}