summaryrefslogtreecommitdiff
path: root/lib/crypto-api.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crypto-api.c')
-rw-r--r--lib/crypto-api.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/crypto-api.c b/lib/crypto-api.c
index c3d367b542..4dbd633d88 100644
--- a/lib/crypto-api.c
+++ b/lib/crypto-api.c
@@ -138,9 +138,7 @@ gnutls_cipher_add_auth(gnutls_cipher_hd_t handle, const void *ptext,
if (_gnutls_cipher_is_aead(&h->ctx_enc) == 0)
return gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
- _gnutls_cipher_auth(&h->ctx_enc, ptext, ptext_size);
-
- return 0;
+ return _gnutls_cipher_auth(&h->ctx_enc, ptext, ptext_size);
}
/**