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 /auth-passwd.c | |
parent | fa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'auth-passwd.c')
-rw-r--r-- | auth-passwd.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c index 6e6d0d76a..be6283796 100644 --- a/auth-passwd.c +++ b/auth-passwd.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: auth-passwd.c,v 1.40 2006/08/03 03:34:41 deraadt Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -36,12 +37,20 @@ | |||
36 | */ | 37 | */ |
37 | 38 | ||
38 | #include "includes.h" | 39 | #include "includes.h" |
39 | RCSID("$OpenBSD: auth-passwd.c,v 1.34 2005/07/19 15:32:26 otto Exp $"); | 40 | |
41 | #include <sys/types.h> | ||
42 | |||
43 | #include <pwd.h> | ||
44 | #include <stdio.h> | ||
45 | #include <string.h> | ||
46 | #include <stdarg.h> | ||
40 | 47 | ||
41 | #include "packet.h" | 48 | #include "packet.h" |
42 | #include "buffer.h" | 49 | #include "buffer.h" |
43 | #include "log.h" | 50 | #include "log.h" |
44 | #include "servconf.h" | 51 | #include "servconf.h" |
52 | #include "key.h" | ||
53 | #include "hostfile.h" | ||
45 | #include "auth.h" | 54 | #include "auth.h" |
46 | #include "auth-options.h" | 55 | #include "auth-options.h" |
47 | 56 | ||