summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sshconnect2.c10
2 files changed, 5 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 75dffcd4a..abcb900c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
7 - stevesk@cvs.openbsd.org 2002/01/24 21:13:23 7 - stevesk@cvs.openbsd.org 2002/01/24 21:13:23
8 [packet.c] 8 [packet.c]
9 need misc.h for set_nodelay() 9 need misc.h for set_nodelay()
10 - markus@cvs.openbsd.org 2002/01/25 21:00:24
11 [sshconnect2.c]
12 unused include
10 13
1120020130 1420020130
12 - (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@ 15 - (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@
@@ -7409,4 +7412,4 @@
7409 - Wrote replacements for strlcpy and mkdtemp 7412 - Wrote replacements for strlcpy and mkdtemp
7410 - Released 1.0pre1 7413 - Released 1.0pre1
7411 7414
7412$Id: ChangeLog,v 1.1800 2002/02/05 00:52:54 djm Exp $ 7415$Id: ChangeLog,v 1.1801 2002/02/05 00:53:15 djm Exp $
diff --git a/sshconnect2.c b/sshconnect2.c
index 3e5ca7ad1..e4e20cad2 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -23,26 +23,18 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: sshconnect2.c,v 1.93 2002/01/13 17:57:37 markus Exp $"); 26RCSID("$OpenBSD: sshconnect2.c,v 1.94 2002/01/25 21:00:24 markus Exp $");
27
28#include <openssl/bn.h>
29#include <openssl/md5.h>
30#include <openssl/dh.h>
31#include <openssl/hmac.h>
32 27
33#include "ssh.h" 28#include "ssh.h"
34#include "ssh2.h" 29#include "ssh2.h"
35#include "xmalloc.h" 30#include "xmalloc.h"
36#include "rsa.h"
37#include "buffer.h" 31#include "buffer.h"
38#include "packet.h" 32#include "packet.h"
39#include "uidswap.h"
40#include "compat.h" 33#include "compat.h"
41#include "bufaux.h" 34#include "bufaux.h"
42#include "cipher.h" 35#include "cipher.h"
43#include "kex.h" 36#include "kex.h"
44#include "myproposal.h" 37#include "myproposal.h"
45#include "key.h"
46#include "sshconnect.h" 38#include "sshconnect.h"
47#include "authfile.h" 39#include "authfile.h"
48#include "dh.h" 40#include "dh.h"