summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/auth2.c b/auth2.c
index 83d5224c9..2d880b57c 100644
--- a/auth2.c
+++ b/auth2.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2.c,v 1.112 2006/07/22 20:48:22 stevesk Exp $ */ 1/* $OpenBSD: auth2.c,v 1.113 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 *
@@ -28,23 +28,27 @@
28#include <sys/types.h> 28#include <sys/types.h>
29 29
30#include <pwd.h> 30#include <pwd.h>
31#include <stdarg.h>
31#include <string.h> 32#include <string.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 "log.h" 37#include "log.h"
38#include "buffer.h"
37#include "servconf.h" 39#include "servconf.h"
38#include "compat.h" 40#include "compat.h"
41#include "key.h"
42#include "hostfile.h"
39#include "auth.h" 43#include "auth.h"
40#include "dispatch.h" 44#include "dispatch.h"
41#include "pathnames.h" 45#include "pathnames.h"
42#include "monitor_wrap.h"
43#include "buffer.h" 46#include "buffer.h"
44 47
45#ifdef GSSAPI 48#ifdef GSSAPI
46#include "ssh-gss.h" 49#include "ssh-gss.h"
47#endif 50#endif
51#include "monitor_wrap.h"
48 52
49/* import */ 53/* import */
50extern ServerOptions options; 54extern ServerOptions options;