summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/auth1.c b/auth1.c
index 2c5585768..34dcf6266 100644
--- a/auth1.c
+++ b/auth1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth1.c,v 1.69 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: auth1.c,v 1.70 2006/08/03 03:34:41 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -17,6 +17,7 @@
17#include <stdio.h> 17#include <stdio.h>
18#include <string.h> 18#include <string.h>
19#include <unistd.h> 19#include <unistd.h>
20#include <pwd.h>
20 21
21#include "xmalloc.h" 22#include "xmalloc.h"
22#include "rsa.h" 23#include "rsa.h"
@@ -26,10 +27,15 @@
26#include "log.h" 27#include "log.h"
27#include "servconf.h" 28#include "servconf.h"
28#include "compat.h" 29#include "compat.h"
30#include "key.h"
31#include "hostfile.h"
29#include "auth.h" 32#include "auth.h"
30#include "channels.h" 33#include "channels.h"
31#include "session.h" 34#include "session.h"
32#include "uidswap.h" 35#include "uidswap.h"
36#ifdef GSSAPI
37#include "ssh-gss.h"
38#endif
33#include "monitor_wrap.h" 39#include "monitor_wrap.h"
34#include "buffer.h" 40#include "buffer.h"
35 41