summaryrefslogtreecommitdiff
path: root/cipher/cipher-ctr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/cipher-ctr.c')
-rw-r--r--cipher/cipher-ctr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/cipher-ctr.c b/cipher/cipher-ctr.c
index ff1742c6..fbc898f1 100644
--- a/cipher/cipher-ctr.c
+++ b/cipher/cipher-ctr.c
@@ -38,7 +38,7 @@ _gcry_cipher_ctr_encrypt (gcry_cipher_hd_t c,
{
unsigned int n;
int i;
- unsigned int blocksize = c->cipher->blocksize;
+ unsigned int blocksize = c->spec->blocksize;
unsigned int nblocks;
unsigned int burn, nburn;
@@ -77,7 +77,7 @@ _gcry_cipher_ctr_encrypt (gcry_cipher_hd_t c,
unsigned char tmp[MAX_BLOCKSIZE];
do {
- nburn = c->cipher->encrypt (&c->context.c, tmp, c->u_ctr.ctr);
+ nburn = c->spec->encrypt (&c->context.c, tmp, c->u_ctr.ctr);
burn = nburn > burn ? nburn : burn;
for (i = blocksize; i > 0; i--)