summaryrefslogtreecommitdiff
path: root/lib/gnutls_cipher_int.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2009-11-29 12:08:44 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2009-11-29 12:23:25 +0200
commitbc3e43d5f121e404aa32212dcfcc5027de807056 (patch)
treeb4993e96b3e23ba1b4f63fff5b00dd9d1bf3e31b /lib/gnutls_cipher_int.c
parent0477fd0883cbd9cd9809c3b8029ce146187b5431 (diff)
downloadgnutls-bc3e43d5f121e404aa32212dcfcc5027de807056.tar.gz
Merged the two internal hash API functions, to simplify and reduce code.
gnutls_hmac* and gnutls_hash* were merged to gnutls_hash API.
Diffstat (limited to 'lib/gnutls_cipher_int.c')
-rw-r--r--lib/gnutls_cipher_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_cipher_int.c b/lib/gnutls_cipher_int.c
index d370d849e0..b496c688ff 100644
--- a/lib/gnutls_cipher_int.c
+++ b/lib/gnutls_cipher_int.c
@@ -40,7 +40,7 @@ _gnutls_cipher_init (cipher_hd_st * handle, gnutls_cipher_algorithm_t cipher,
const gnutls_datum_t * key, const gnutls_datum_t * iv)
{
int ret = GNUTLS_E_INTERNAL_ERROR;
- gnutls_crypto_single_cipher_st *cc = NULL;
+ const gnutls_crypto_cipher_st *cc = NULL;
/* check if a cipher has been registered
*/