diff options
author | Colin Watson <cjwatson@debian.org> | 2009-12-29 21:38:40 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-12-29 21:38:40 +0000 |
commit | 1b816ea846aca3ee89e7995373ace609e9518424 (patch) | |
tree | b41cdc8495cae7fa9c2e0f98a5f2e71656b61f9a /auth2-passwd.c | |
parent | fa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'auth2-passwd.c')
-rw-r--r-- | auth2-passwd.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/auth2-passwd.c b/auth2-passwd.c index 2321ef47b..421c5c25d 100644 --- a/auth2-passwd.c +++ b/auth2-passwd.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-passwd.c,v 1.9 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,12 +24,22 @@ | |||
23 | */ | 24 | */ |
24 | 25 | ||
25 | #include "includes.h" | 26 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth2-passwd.c,v 1.5 2003/12/31 00:24:50 dtucker Exp $"); | 27 | |
28 | #include <sys/types.h> | ||
29 | |||
30 | #include <string.h> | ||
31 | #include <stdarg.h> | ||
27 | 32 | ||
28 | #include "xmalloc.h" | 33 | #include "xmalloc.h" |
29 | #include "packet.h" | 34 | #include "packet.h" |
30 | #include "log.h" | 35 | #include "log.h" |
36 | #include "key.h" | ||
37 | #include "hostfile.h" | ||
31 | #include "auth.h" | 38 | #include "auth.h" |
39 | #include "buffer.h" | ||
40 | #ifdef GSSAPI | ||
41 | #include "ssh-gss.h" | ||
42 | #endif | ||
32 | #include "monitor_wrap.h" | 43 | #include "monitor_wrap.h" |
33 | #include "servconf.h" | 44 | #include "servconf.h" |
34 | 45 | ||