summaryrefslogtreecommitdiff
path: root/kexgex.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-12-29 21:38:40 +0000
committerColin Watson <cjwatson@debian.org>2009-12-29 21:38:40 +0000
commit1b816ea846aca3ee89e7995373ace609e9518424 (patch)
treeb41cdc8495cae7fa9c2e0f98a5f2e71656b61f9a /kexgex.c
parentfa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff)
parent086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff)
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'kexgex.c')
-rw-r--r--kexgex.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/kexgex.c b/kexgex.c
index 705484a47..b60ab5c53 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: kexgex.c,v 1.27 2006/08/03 03:34:42 deraadt Exp $ */
1/* 2/*
2 * Copyright (c) 2000 Niels Provos. All rights reserved. 3 * Copyright (c) 2000 Niels Provos. All rights reserved.
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -24,12 +25,15 @@
24 */ 25 */
25 26
26#include "includes.h" 27#include "includes.h"
27RCSID("$OpenBSD: kexgex.c,v 1.24 2005/11/04 05:15:59 djm Exp $"); 28
29#include <sys/types.h>
28 30
29#include <openssl/evp.h> 31#include <openssl/evp.h>
32#include <signal.h>
30 33
31#include "buffer.h" 34#include "buffer.h"
32#include "bufaux.h" 35#include "key.h"
36#include "cipher.h"
33#include "kex.h" 37#include "kex.h"
34#include "ssh2.h" 38#include "ssh2.h"
35 39