diff options
author | Damien Miller <djm@mindrot.org> | 2005-07-17 17:02:09 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-07-17 17:02:09 +1000 |
commit | 46d38de48b1018c74040d2399bafbedf50247529 (patch) | |
tree | 48255e4d9fc4bbd22615a35f4f5d4537873cba68 /cipher.c | |
parent | 4f1adad4f65d63645689d2d947876848b0813390 (diff) |
- djm@cvs.openbsd.org 2005/07/16 01:35:24
[auth1.c channels.c cipher.c clientloop.c kex.c session.c ssh.c]
[sshconnect.c]
spacing
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, |