summaryrefslogtreecommitdiff
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r--ssh-keyscan.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 701540841..64d4d0870 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keyscan.c,v 1.72 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: ssh-keyscan.c,v 1.73 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. 3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 * 4 *
@@ -23,20 +23,21 @@
23#include <stdarg.h> 23#include <stdarg.h>
24#include <stdio.h> 24#include <stdio.h>
25#include <stdlib.h> 25#include <stdlib.h>
26#include <signal.h>
26#include <string.h> 27#include <string.h>
27#include <unistd.h> 28#include <unistd.h>
28 29
29#include "xmalloc.h" 30#include "xmalloc.h"
30#include "ssh.h" 31#include "ssh.h"
31#include "ssh1.h" 32#include "ssh1.h"
33#include "buffer.h"
32#include "key.h" 34#include "key.h"
35#include "cipher.h"
33#include "kex.h" 36#include "kex.h"
34#include "compat.h" 37#include "compat.h"
35#include "myproposal.h" 38#include "myproposal.h"
36#include "packet.h" 39#include "packet.h"
37#include "dispatch.h" 40#include "dispatch.h"
38#include "buffer.h"
39#include "bufaux.h"
40#include "log.h" 41#include "log.h"
41#include "atomicio.h" 42#include "atomicio.h"
42#include "misc.h" 43#include "misc.h"