summaryrefslogtreecommitdiff
path: root/auth-krb5.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-krb5.c')
-rw-r--r--auth-krb5.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/auth-krb5.c b/auth-krb5.c
index 676b8ab1f..868288126 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-krb5.c,v 1.18 2006/05/06 08:35:40 dtucker Exp $ */ 1/* $OpenBSD: auth-krb5.c,v 1.19 2006/08/03 03:34:41 deraadt Exp $ */
2/* 2/*
3 * Kerberos v5 authentication and ticket-passing routines. 3 * Kerberos v5 authentication and ticket-passing routines.
4 * 4 *
@@ -30,13 +30,20 @@
30 30
31#include "includes.h" 31#include "includes.h"
32 32
33#include <sys/types.h>
34#include <pwd.h>
35#include <stdarg.h>
36
37#include "xmalloc.h"
33#include "ssh.h" 38#include "ssh.h"
34#include "ssh1.h" 39#include "ssh1.h"
35#include "packet.h" 40#include "packet.h"
36#include "xmalloc.h"
37#include "log.h" 41#include "log.h"
42#include "buffer.h"
38#include "servconf.h" 43#include "servconf.h"
39#include "uidswap.h" 44#include "uidswap.h"
45#include "key.h"
46#include "hostfile.h"
40#include "auth.h" 47#include "auth.h"
41 48
42#ifdef KRB5 49#ifdef KRB5