]> andersk Git - openssh.git/commitdiff
- stevesk@cvs.openbsd.org 2002/02/24 16:09:52
authormouring <mouring>
Tue, 26 Feb 2002 18:00:48 +0000 (18:00 +0000)
committermouring <mouring>
Tue, 26 Feb 2002 18:00:48 +0000 (18:00 +0000)
     [sshd.c]
     use u_char* here; ok markus@

ChangeLog
sshd.c

index 8d5af26bc21f937654fbe8eeab6f5f15f2eb01f0..bc2515b1e3ce49caf516a0ab6b9f1388a88a0fdb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,9 @@
    - markus@cvs.openbsd.org 2002/02/23 17:59:02
      [kex.c kexdh.c kexgex.c]
      don't allow garbage after payload.
+   - stevesk@cvs.openbsd.org 2002/02/24 16:09:52
+     [sshd.c]
+     use u_char* here; ok markus@
 
 20020225
  - (bal) Last AIX patch.  Moved aix_usrinfo() outside of do_setuserconext()
diff --git a/sshd.c b/sshd.c
index 4b049e3874b45efb02a3b4858d6768f6cdd64242..21a5f9c1904d5ebc2879ecf3766ab691c00eeda9 100644 (file)
--- a/sshd.c
+++ b/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>
@@ -1434,7 +1434,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");
This page took 0.05706 seconds and 5 git commands to generate.