From b3a62d6cd1d6f304304956ea87ab9d5c1ff87031 Mon Sep 17 00:00:00 2001 From: rasky Date: Wed, 29 Sep 2010 13:40:29 +0000 Subject: [PATCH] SEC: Fix a last-minute typo. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4347 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/sec/cipher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bertos/sec/cipher.h b/bertos/sec/cipher.h index f7aee505..f0f37a36 100644 --- a/bertos/sec/cipher.h +++ b/bertos/sec/cipher.h @@ -117,7 +117,7 @@ INLINE void cipher_ecb_decrypt(BlockCipher *c, void *block) */ INLINE void cipher_cbc_begin(BlockCipher *c, void *iv) { - c->buf = ivbuf; + c->buf = iv; } /** -- 2.25.1