diff options
author | 2002-02-24 16:09:52 +0000 | |
---|---|---|
committer | 2002-02-24 16:09:52 +0000 | |
commit | a79429c9aa8a0d3ce0f670ea0e3f1bd1e14bc7df (patch) | |
tree | d150f09f1202eea443bbf666e3fd9a3961d0fc01 | |
parent | getchar fixes; ok pjanzen (diff) | |
download | wireguard-openbsd-a79429c9aa8a0d3ce0f670ea0e3f1bd1e14bc7df.tar.xz wireguard-openbsd-a79429c9aa8a0d3ce0f670ea0e3f1bd1e14bc7df.zip |
use u_char* here; ok markus@
-rw-r--r-- | usr.bin/ssh/sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index cc5e2843693..a8abf4e17c4 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.226 2002/02/11 16:19:39 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.227 2002/02/24 16:09:52 stevesk Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -1401,7 +1401,7 @@ do_ssh1_kex(void) } if (rsafail) { int bytes = BN_num_bytes(session_key_int); - char *buf = xmalloc(bytes); + u_char *buf = xmalloc(bytes); MD5_CTX md; log("do_connection: generating a fake encryption key"); |