summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/authfile.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-02-28 15:46:33 +0000
committermarkus <markus@openbsd.org>2002-02-28 15:46:33 +0000
commit2189d7b25baf8c7c43a9ea2bf31492d5b08c69fa (patch)
tree78de06ca2b2bb94d6d1c723ffe04e30c211c8641 /usr.bin/ssh/authfile.c
parentFix size parameter to memmove() (off by one) introduced in last commit. (diff)
downloadwireguard-openbsd-2189d7b25baf8c7c43a9ea2bf31492d5b08c69fa.tar.xz
wireguard-openbsd-2189d7b25baf8c7c43a9ea2bf31492d5b08c69fa.zip
add some const EVP_MD for openssl-0.9.7
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r--usr.bin/ssh/authfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c
index c84b41a6103..337da595dda 100644
--- a/usr.bin/ssh/authfile.c
+++ b/usr.bin/ssh/authfile.c
@@ -36,7 +36,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: authfile.c,v 1.47 2002/02/24 19:14:59 markus Exp $");
+RCSID("$OpenBSD: authfile.c,v 1.48 2002/02/28 15:46:33 markus Exp $");
#include <openssl/err.h>
#include <openssl/evp.h>
@@ -169,7 +169,7 @@ key_save_private_pem(Key *key, const char *filename, const char *_passphrase,
int success = 0;
int len = strlen(_passphrase);
u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
- EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
+ const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
if (len > 0 && len <= 4) {
error("passphrase too short: have %d bytes, need > 4", len);