diff options
author | Damien Miller <djm@mindrot.org> | 2006-08-05 14:07:20 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-08-05 14:07:20 +1000 |
commit | 75bb664458d5a825824607841819b9a40d9bfdb5 (patch) | |
tree | 66487433e1f482f9ff98977a60fb984900d07671 /auth-pam.c | |
parent | d04db59ad929d289c2dcaa466989659bbc449f6b (diff) |
- (djm) [auth-pam.c auth-shadow.c auth2-none.c cleanup.c sshd.c]
[openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
includes for Linux in
Diffstat (limited to 'auth-pam.c')
-rw-r--r-- | auth-pam.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/auth-pam.c b/auth-pam.c index 695198493..8e9361caa 100644 --- a/auth-pam.c +++ b/auth-pam.c | |||
@@ -78,19 +78,24 @@ | |||
78 | # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member) | 78 | # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member) |
79 | #endif | 79 | #endif |
80 | 80 | ||
81 | #include "xmalloc.h" | ||
82 | #include "buffer.h" | ||
83 | #include "key.h" | ||
84 | #include "hostfile.h" | ||
81 | #include "auth.h" | 85 | #include "auth.h" |
82 | #include "auth-pam.h" | 86 | #include "auth-pam.h" |
83 | #include "buffer.h" | ||
84 | #include "canohost.h" | 87 | #include "canohost.h" |
85 | #include "log.h" | 88 | #include "log.h" |
86 | #include "monitor_wrap.h" | ||
87 | #include "msg.h" | 89 | #include "msg.h" |
88 | #include "packet.h" | 90 | #include "packet.h" |
89 | #include "misc.h" | 91 | #include "misc.h" |
90 | #include "servconf.h" | 92 | #include "servconf.h" |
91 | #include "ssh2.h" | 93 | #include "ssh2.h" |
92 | #include "xmalloc.h" | ||
93 | #include "auth-options.h" | 94 | #include "auth-options.h" |
95 | #ifdef GSSAPI | ||
96 | #include "ssh-gss.h" | ||
97 | #endif | ||
98 | #include "monitor_wrap.h" | ||
94 | 99 | ||
95 | extern ServerOptions options; | 100 | extern ServerOptions options; |
96 | extern Buffer loginmsg; | 101 | extern Buffer loginmsg; |