diff options
Diffstat (limited to 'auth2-hostbased.c')
-rw-r--r-- | auth2-hostbased.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/auth2-hostbased.c b/auth2-hostbased.c index 5cb617e1c..663dec5d9 100644 --- a/auth2-hostbased.c +++ b/auth2-hostbased.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-hostbased.c,v 1.10 2006/07/22 20:48:22 stevesk Exp $ */ | 1 | /* $OpenBSD: auth2-hostbased.c,v 1.11 2006/08/03 03:34:41 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -29,18 +29,22 @@ | |||
29 | 29 | ||
30 | #include <pwd.h> | 30 | #include <pwd.h> |
31 | #include <string.h> | 31 | #include <string.h> |
32 | #include <stdarg.h> | ||
32 | 33 | ||
33 | #include "ssh2.h" | ||
34 | #include "xmalloc.h" | 34 | #include "xmalloc.h" |
35 | #include "ssh2.h" | ||
35 | #include "packet.h" | 36 | #include "packet.h" |
36 | #include "buffer.h" | 37 | #include "buffer.h" |
37 | #include "log.h" | 38 | #include "log.h" |
38 | #include "servconf.h" | 39 | #include "servconf.h" |
39 | #include "compat.h" | 40 | #include "compat.h" |
40 | #include "bufaux.h" | ||
41 | #include "auth.h" | ||
42 | #include "key.h" | 41 | #include "key.h" |
42 | #include "hostfile.h" | ||
43 | #include "auth.h" | ||
43 | #include "canohost.h" | 44 | #include "canohost.h" |
45 | #ifdef GSSAPI | ||
46 | #include "ssh-gss.h" | ||
47 | #endif | ||
44 | #include "monitor_wrap.h" | 48 | #include "monitor_wrap.h" |
45 | #include "pathnames.h" | 49 | #include "pathnames.h" |
46 | 50 | ||