summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/kex.c b/kex.c
index 3525307c3..0c36519a1 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.c,v 1.75 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: kex.c,v 1.76 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -27,21 +27,21 @@
27 27
28#include <sys/param.h> 28#include <sys/param.h>
29 29
30#include <openssl/crypto.h> 30#include <signal.h>
31
32#include <stdio.h> 31#include <stdio.h>
33#include <stdlib.h> 32#include <stdlib.h>
34#include <string.h> 33#include <string.h>
35 34
36#include "ssh2.h" 35#include <openssl/crypto.h>
36
37#include "xmalloc.h" 37#include "xmalloc.h"
38#include "ssh2.h"
38#include "buffer.h" 39#include "buffer.h"
39#include "bufaux.h"
40#include "packet.h" 40#include "packet.h"
41#include "compat.h" 41#include "compat.h"
42#include "cipher.h" 42#include "cipher.h"
43#include "kex.h"
44#include "key.h" 43#include "key.h"
44#include "kex.h"
45#include "log.h" 45#include "log.h"
46#include "mac.h" 46#include "mac.h"
47#include "match.h" 47#include "match.h"