diff options
Diffstat (limited to 'auth2-none.c')
-rw-r--r-- | auth2-none.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/auth2-none.c b/auth2-none.c index 1c30a3203..952b44824 100644 --- a/auth2-none.c +++ b/auth2-none.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-none.c,v 1.13 2006/08/05 07:52:52 dtucker Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
3 | * | 4 | * |
@@ -23,16 +24,29 @@ | |||
23 | */ | 24 | */ |
24 | 25 | ||
25 | #include "includes.h" | 26 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth2-none.c,v 1.7 2004/05/11 19:01:43 deraadt Exp $"); | ||
27 | 27 | ||
28 | #include "auth.h" | 28 | #include <sys/types.h> |
29 | #include <sys/stat.h> | ||
30 | #include <sys/uio.h> | ||
31 | |||
32 | #include <fcntl.h> | ||
33 | #include <stdarg.h> | ||
34 | #include <unistd.h> | ||
35 | |||
29 | #include "xmalloc.h" | 36 | #include "xmalloc.h" |
37 | #include "key.h" | ||
38 | #include "hostfile.h" | ||
39 | #include "auth.h" | ||
30 | #include "packet.h" | 40 | #include "packet.h" |
31 | #include "log.h" | 41 | #include "log.h" |
42 | #include "buffer.h" | ||
32 | #include "servconf.h" | 43 | #include "servconf.h" |
33 | #include "atomicio.h" | 44 | #include "atomicio.h" |
34 | #include "compat.h" | 45 | #include "compat.h" |
35 | #include "ssh2.h" | 46 | #include "ssh2.h" |
47 | #ifdef GSSAPI | ||
48 | #include "ssh-gss.h" | ||
49 | #endif | ||
36 | #include "monitor_wrap.h" | 50 | #include "monitor_wrap.h" |
37 | 51 | ||
38 | /* import */ | 52 | /* import */ |