summaryrefslogtreecommitdiff
path: root/cipher.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher.c b/cipher.c
index c3cd5dcf4..aa8cfcf67 100644
--- a/cipher.c
+++ b/cipher.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cipher.c,v 1.107 2017/05/07 23:12:57 djm Exp $ */ 1/* $OpenBSD: cipher.c,v 1.108 2017/11/03 02:22:41 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -449,8 +449,8 @@ cipher_get_keyiv_len(const struct sshcipher_ctx *cc)
449int 449int
450cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len) 450cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len)
451{ 451{
452 const struct sshcipher *c = cc->cipher;
453#ifdef WITH_OPENSSL 452#ifdef WITH_OPENSSL
453 const struct sshcipher *c = cc->cipher;
454 int evplen; 454 int evplen;
455#endif 455#endif
456 456
@@ -494,8 +494,8 @@ cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len)
494int 494int
495cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv) 495cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv)
496{ 496{
497 const struct sshcipher *c = cc->cipher;
498#ifdef WITH_OPENSSL 497#ifdef WITH_OPENSSL
498 const struct sshcipher *c = cc->cipher;
499 int evplen = 0; 499 int evplen = 0;
500#endif 500#endif
501 501