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) | |
download | openssh-git-75bb664458d5a825824607841819b9a40d9bfdb5.tar.gz |
- (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
@@ -78,19 +78,24 @@ # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member) #endif +#include "xmalloc.h" +#include "buffer.h" +#include "key.h" +#include "hostfile.h" #include "auth.h" #include "auth-pam.h" -#include "buffer.h" #include "canohost.h" #include "log.h" -#include "monitor_wrap.h" #include "msg.h" #include "packet.h" #include "misc.h" #include "servconf.h" #include "ssh2.h" -#include "xmalloc.h" #include "auth-options.h" +#ifdef GSSAPI +#include "ssh-gss.h" +#endif +#include "monitor_wrap.h" extern ServerOptions options; extern Buffer loginmsg; |