diff options
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 9975c9d32..c57ea0c82 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.158 2006/08/01 23:22:47 stevesk Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.159 2006/08/03 03:34:42 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -23,19 +23,22 @@ | |||
23 | #include <ctype.h> | 23 | #include <ctype.h> |
24 | #include <errno.h> | 24 | #include <errno.h> |
25 | #include <netdb.h> | 25 | #include <netdb.h> |
26 | #include <signal.h> | ||
26 | #include <stdio.h> | 27 | #include <stdio.h> |
27 | #include <string.h> | 28 | #include <string.h> |
28 | #include <unistd.h> | 29 | #include <unistd.h> |
29 | 30 | ||
30 | #include "ssh.h" | ||
31 | #include "xmalloc.h" | 31 | #include "xmalloc.h" |
32 | #include "ssh.h" | ||
32 | #include "compat.h" | 33 | #include "compat.h" |
33 | #include "cipher.h" | 34 | #include "cipher.h" |
34 | #include "pathnames.h" | 35 | #include "pathnames.h" |
35 | #include "log.h" | 36 | #include "log.h" |
37 | #include "key.h" | ||
36 | #include "readconf.h" | 38 | #include "readconf.h" |
37 | #include "match.h" | 39 | #include "match.h" |
38 | #include "misc.h" | 40 | #include "misc.h" |
41 | #include "buffer.h" | ||
39 | #include "kex.h" | 42 | #include "kex.h" |
40 | #include "mac.h" | 43 | #include "mac.h" |
41 | 44 | ||