From ec96e5ad74bcf8caafa7ab509bef180903f4e1a4 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Mon, 7 Dec 2020 13:18:22 -0600 Subject: [PATCH] wolfSSL_BN_is_odd(): fix function signature to match header (unsigned long reverted to WOLFSSL_BN_ULONG). --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index ece7f1870..e8a2c5aec 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -46279,7 +46279,7 @@ int wolfSSL_BN_is_odd(const WOLFSSL_BIGNUM* bn) /* return compliant with OpenSSL * 1 if BIGNUM is word, 0 else */ -int wolfSSL_BN_is_word(const WOLFSSL_BIGNUM* bn, unsigned long w) +int wolfSSL_BN_is_word(const WOLFSSL_BIGNUM* bn, WOLFSSL_BN_ULONG w) { WOLFSSL_MSG("wolfSSL_BN_is_word");