From 397211323cb5c631af09f302290b47c5cd441993 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 1 Jun 2001 15:29:32 +0000 Subject: [PATCH] nCipher callbacks shall return 0 on success, something else otherwise. --- crypto/engine/hw_ncipher.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/engine/hw_ncipher.c b/crypto/engine/hw_ncipher.c index b614b6e202..2879a10a68 100644 --- a/crypto/engine/hw_ncipher.c +++ b/crypto/engine/hw_ncipher.c @@ -1059,14 +1059,14 @@ static int hwcrhk_mutex_init(HWCryptoHook_Mutex* mt, { mt->lockid = CRYPTO_get_new_dynlockid(); if (mt->lockid == 0) - return 0; - return 1; + return -1; + return 0; } static int hwcrhk_mutex_lock(HWCryptoHook_Mutex *mt) { CRYPTO_w_lock(mt->lockid); - return 1; + return 0; } void hwcrhk_mutex_unlock(HWCryptoHook_Mutex * mt) -- GitLab