From 6a56a53545eec545092830641d3129be6c2035b5 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Thu, 31 Dec 2015 09:33:01 -0700 Subject: [PATCH] catching up on old jenkins issues --- src/ssl.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/ssl.c b/src/ssl.c index db8027e53..b00daae7f 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -17191,6 +17191,10 @@ int wolfSSL_ED25519_generate_key(unsigned char *priv, unsigned int *privSz, { #ifndef WOLFSSL_KEY_GEN WOLFSSL_MSG("No Key Gen built in"); + (void) priv; + (void) privSz; + (void) pub; + (void) pubSz; return SSL_FAILURE; #else /* WOLFSSL_KEY_GEN */ int ret = SSL_FAILURE; @@ -17264,6 +17268,12 @@ int wolfSSL_ED25519_sign(const unsigned char *msg, unsigned int msgSz, { #ifndef WOLFSSL_KEY_GEN WOLFSSL_MSG("No Key Gen built in"); + (void) msg; + (void) msgSz; + (void) priv; + (void) privSz; + (void) sig; + (void) sigSz; return SSL_FAILURE; #else /* WOLFSSL_KEY_GEN */ ed25519_key key; @@ -17311,6 +17321,12 @@ int wolfSSL_ED25519_verify(const unsigned char *msg, unsigned int msgSz, { #ifndef WOLFSSL_KEY_GEN WOLFSSL_MSG("No Key Gen built in"); + (void) msg; + (void) msgSz; + (void) pub; + (void) pubSz; + (void) sig; + (void) sigSz; return SSL_FAILURE; #else /* WOLFSSL_KEY_GEN */ ed25519_key key;