From: Nikos Mavrogiannopoulos Date: Mon, 16 Dec 2013 09:05:16 +0000 (+0100) Subject: Avoid verbose logging X-Git-Tag: gnutls_3_3_0pre0~447 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b486fc3e5d7c81cf9c07acdec7fde5ccf04909e0;p=thirdparty%2Fgnutls.git Avoid verbose logging --- diff --git a/lib/nettle/mac.c b/lib/nettle/mac.c index 7b75cd4d7f..cfa37e3479 100644 --- a/lib/nettle/mac.c +++ b/lib/nettle/mac.c @@ -257,7 +257,7 @@ wrap_nettle_mac_set_nonce(void *_ctx, const void *nonce, size_t noncelen) struct nettle_mac_ctx *ctx = _ctx; if (ctx->set_nonce == NULL) - return gnutls_assert_val(GNUTLS_E_INVALID_REQUEST); + return GNUTLS_E_INVALID_REQUEST; ctx->set_nonce(ctx->ctx_ptr, noncelen, nonce);