summaryrefslogtreecommitdiff
path: root/auth2-hostbased.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-hostbased.c')
-rw-r--r--auth2-hostbased.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/auth2-hostbased.c b/auth2-hostbased.c
index 1111ed67a..663dec5d9 100644
--- a/auth2-hostbased.c
+++ b/auth2-hostbased.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: auth2-hostbased.c,v 1.11 2006/08/03 03:34:41 deraadt Exp $ */
1/* 2/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 * 4 *
@@ -23,19 +24,27 @@
23 */ 24 */
24 25
25#include "includes.h" 26#include "includes.h"
26RCSID("$OpenBSD: auth2-hostbased.c,v 1.6 2004/01/19 21:25:15 markus Exp $");
27 27
28#include "ssh2.h" 28#include <sys/types.h>
29
30#include <pwd.h>
31#include <string.h>
32#include <stdarg.h>
33
29#include "xmalloc.h" 34#include "xmalloc.h"
35#include "ssh2.h"
30#include "packet.h" 36#include "packet.h"
31#include "buffer.h" 37#include "buffer.h"
32#include "log.h" 38#include "log.h"
33#include "servconf.h" 39#include "servconf.h"
34#include "compat.h" 40#include "compat.h"
35#include "bufaux.h"
36#include "auth.h"
37#include "key.h" 41#include "key.h"
42#include "hostfile.h"
43#include "auth.h"
38#include "canohost.h" 44#include "canohost.h"
45#ifdef GSSAPI
46#include "ssh-gss.h"
47#endif
39#include "monitor_wrap.h" 48#include "monitor_wrap.h"
40#include "pathnames.h" 49#include "pathnames.h"
41 50