diff options
Diffstat (limited to 'auth2-pubkey.c')
-rw-r--r-- | auth2-pubkey.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/auth2-pubkey.c b/auth2-pubkey.c index a97d0f430..9863cd9e6 100644 --- a/auth2-pubkey.c +++ b/auth2-pubkey.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-pubkey.c,v 1.15 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,23 +24,32 @@ | |||
23 | */ | 24 | */ |
24 | 25 | ||
25 | #include "includes.h" | 26 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth2-pubkey.c,v 1.9 2004/12/11 01:48:56 dtucker Exp $"); | ||
27 | 27 | ||
28 | #include <sys/types.h> | ||
29 | #include <sys/stat.h> | ||
30 | |||
31 | #include <pwd.h> | ||
32 | #include <stdio.h> | ||
33 | #include <stdarg.h> | ||
34 | |||
35 | #include "xmalloc.h" | ||
28 | #include "ssh.h" | 36 | #include "ssh.h" |
29 | #include "ssh2.h" | 37 | #include "ssh2.h" |
30 | #include "xmalloc.h" | ||
31 | #include "packet.h" | 38 | #include "packet.h" |
32 | #include "buffer.h" | 39 | #include "buffer.h" |
33 | #include "log.h" | 40 | #include "log.h" |
34 | #include "servconf.h" | 41 | #include "servconf.h" |
35 | #include "compat.h" | 42 | #include "compat.h" |
36 | #include "bufaux.h" | ||
37 | #include "auth.h" | ||
38 | #include "key.h" | 43 | #include "key.h" |
44 | #include "hostfile.h" | ||
45 | #include "auth.h" | ||
39 | #include "pathnames.h" | 46 | #include "pathnames.h" |
40 | #include "uidswap.h" | 47 | #include "uidswap.h" |
41 | #include "auth-options.h" | 48 | #include "auth-options.h" |
42 | #include "canohost.h" | 49 | #include "canohost.h" |
50 | #ifdef GSSAPI | ||
51 | #include "ssh-gss.h" | ||
52 | #endif | ||
43 | #include "monitor_wrap.h" | 53 | #include "monitor_wrap.h" |
44 | #include "misc.h" | 54 | #include "misc.h" |
45 | 55 | ||