summaryrefslogtreecommitdiff
path: root/auth2-hostbased.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 /auth2-hostbased.c
parentfa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff)
parent086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff)
import openssh-4.6p1-gsskex-20070312.patch
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