summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-02-26 18:00:48 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-02-26 18:00:48 +0000
commit13c5d3b37095a990e6ab836ebe6facddc0ac9cff (patch)
tree219b633d3cc4d49ecba2d7913a16c90a6af46f30 /sshd.c
parent14519086e4d04acec0e0f83e1d31ffdce4419d52 (diff)
- stevesk@cvs.openbsd.org 2002/02/24 16:09:52
[sshd.c] use u_char* here; ok markus@
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 4b049e387..21a5f9c19 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.226 2002/02/11 16:19:39 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.227 2002/02/24 16:09:52 stevesk Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -1434,7 +1434,7 @@ do_ssh1_kex(void)
1434 } 1434 }
1435 if (rsafail) { 1435 if (rsafail) {
1436 int bytes = BN_num_bytes(session_key_int); 1436 int bytes = BN_num_bytes(session_key_int);
1437 char *buf = xmalloc(bytes); 1437 u_char *buf = xmalloc(bytes);
1438 MD5_CTX md; 1438 MD5_CTX md;
1439 1439
1440 log("do_connection: generating a fake encryption key"); 1440 log("do_connection: generating a fake encryption key");