modification to suppress compiler warning when LTC_FAST is not defined

This commit is contained in:
Steffen Jaeckel 2009-10-01 11:58:04 +02:00
parent fcd5faf947
commit 6816ac3f3f

View File

@ -27,7 +27,7 @@
*/ */
int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen) int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen)
{ {
unsigned long n, x, blklen; unsigned long n, x;
int err; int err;
LTC_ARGCHK(omac != NULL); LTC_ARGCHK(omac != NULL);
@ -42,6 +42,9 @@ int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen)
} }
#ifdef LTC_FAST #ifdef LTC_FAST
{
unsigned long blklen;
blklen = cipher_descriptor[omac->cipher_idx].block_length; blklen = cipher_descriptor[omac->cipher_idx].block_length;
if (omac->buflen == 0 && inlen > blklen) { if (omac->buflen == 0 && inlen > blklen) {
unsigned long y; unsigned long y;
@ -56,6 +59,7 @@ int omac_process(omac_state *omac, const unsigned char *in, unsigned long inlen)
} }
inlen -= x; inlen -= x;
} }
}
#endif #endif
while (inlen != 0) { while (inlen != 0) {