summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2002-01-18 18:14:17 +0000
committerstevesk <stevesk@openbsd.org>2002-01-18 18:14:17 +0000
commit775e3c00c615c908cc64a0d58632a63801278f76 (patch)
tree30983ceb616e63e37cf7603bbefaafec0550051b /usr.bin/ssh/ssh-keygen.c
parentcorrect Ciphers default; paola.mannaro@ubs.com (diff)
downloadwireguard-openbsd-775e3c00c615c908cc64a0d58632a63801278f76.tar.xz
wireguard-openbsd-775e3c00c615c908cc64a0d58632a63801278f76.zip
unneeded cast cleanup; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 46c9b415353..22085a1887b 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/ssh-keygen.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keygen.c,v 1.90 2002/01/09 13:49:27 markus Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.91 2002/01/18 18:14:17 stevesk Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -328,7 +328,7 @@ do_convert_from_ssh2(struct passwd *pw)
*p = '\0';
strlcat(encoded, line, sizeof(encoded));
}
- blen = uudecode(encoded, (u_char *)blob, sizeof(blob));
+ blen = uudecode(encoded, blob, sizeof(blob));
if (blen < 0) {
fprintf(stderr, "uudecode failed.\n");
exit(1);