Skip to content

Commit d504baa

Browse files
committed
linuxkm/lkcapi_sha_glue.c and .wolfssl_known_macro_extras: fixes from check-source-text.
1 parent 450b0b4 commit d504baa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.wolfssl_known_macro_extras

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ WC_LMS_FULL_HASH
622622
WC_NO_ASYNC_SLEEP
623623
WC_NO_RNG_SIMPLE
624624
WC_NO_STATIC_ASSERT
625+
WC_NO_VERBOSE_RNG
625626
WC_PKCS11_FIND_WITH_ID_ONLY
626627
WC_PROTECT_ENCRYPTED_MEM
627628
WC_RNG_BLOCKING

linuxkm/lkcapi_sha_glue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ static int wc_linuxkm_drbg_init_tfm(struct crypto_tfm *tfm)
10251025
if (ret == 0)
10261026
break;
10271027
if (can_sleep) {
1028-
if (WC_CHECK_FOR_INTR_SIGNALS() == INTERRUPTED_E) {
1028+
if (WC_CHECK_FOR_INTR_SIGNALS() == WC_NO_ERR_TRACE(INTERRUPTED_E)) {
10291029
ret = -EINTR;
10301030
break;
10311031
}

0 commit comments

Comments
 (0)