From: rasky Date: Wed, 29 Sep 2010 13:40:29 +0000 (+0000) Subject: SEC: Fix a last-minute typo. X-Git-Tag: 2.6.0~54 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=b3a62d6cd1d6f304304956ea87ab9d5c1ff87031;p=bertos.git SEC: Fix a last-minute typo. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4347 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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; } /**