diff options
Diffstat (limited to 'cipher.c')
-rw-r--r-- | cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ | |||
35 | */ | 35 | */ |
36 | 36 | ||
37 | #include "includes.h" | 37 | #include "includes.h" |
38 | RCSID("$OpenBSD: cipher.c,v 1.76 2005/06/17 02:44:32 djm Exp $"); | 38 | RCSID("$OpenBSD: cipher.c,v 1.77 2005/07/16 01:35:24 djm Exp $"); |
39 | 39 | ||
40 | #include "xmalloc.h" | 40 | #include "xmalloc.h" |
41 | #include "log.h" | 41 | #include "log.h" |
@@ -249,7 +249,7 @@ cipher_init(CipherContext *cc, Cipher *cipher, | |||
249 | cipher->name); | 249 | cipher->name); |
250 | #endif | 250 | #endif |
251 | 251 | ||
252 | if (cipher->discard_len > 0) { | 252 | if (cipher->discard_len > 0) { |
253 | junk = xmalloc(cipher->discard_len); | 253 | junk = xmalloc(cipher->discard_len); |
254 | discard = xmalloc(cipher->discard_len); | 254 | discard = xmalloc(cipher->discard_len); |
255 | if (EVP_Cipher(&cc->evp, discard, junk, | 255 | if (EVP_Cipher(&cc->evp, discard, junk, |