Skip to content

Commit 978628b

Browse files
committed
revert HMAC changes
1 parent 7dc8149 commit 978628b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_hashopenssl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ typedef struct {
289289

290290
typedef struct {
291291
PyObject_HEAD
292-
HMAC_CTX *ctx; /* OpenSSL hmac context */
292+
HMAC_CTX *ctx; /* OpenSSL hmac context */
293293
// Prevents undefined behavior via multiple threads entering the C API.
294294
bool use_mutex;
295-
PyMutex mutex; /* HMAC context lock */
295+
PyMutex mutex; /* HMAC context lock */
296296
} HMACobject;
297297

298298
#define HMACobject_CAST(op) ((HMACobject *)(op))

0 commit comments

Comments
 (0)