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-rhosts.c | |
parent | fa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r-- | auth-rhosts.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c index aaba8557e..cd0a7967a 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: auth-rhosts.c,v 1.41 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 |
@@ -14,14 +15,27 @@ | |||
14 | */ | 15 | */ |
15 | 16 | ||
16 | #include "includes.h" | 17 | #include "includes.h" |
17 | RCSID("$OpenBSD: auth-rhosts.c,v 1.33 2005/07/17 07:17:54 djm Exp $"); | 18 | |
19 | #include <sys/types.h> | ||
20 | #include <sys/stat.h> | ||
21 | |||
22 | #ifdef HAVE_NETGROUP_H | ||
23 | # include <netgroup.h> | ||
24 | #endif | ||
25 | #include <pwd.h> | ||
26 | #include <stdio.h> | ||
27 | #include <string.h> | ||
28 | #include <stdarg.h> | ||
18 | 29 | ||
19 | #include "packet.h" | 30 | #include "packet.h" |
31 | #include "buffer.h" | ||
20 | #include "uidswap.h" | 32 | #include "uidswap.h" |
21 | #include "pathnames.h" | 33 | #include "pathnames.h" |
22 | #include "log.h" | 34 | #include "log.h" |
23 | #include "servconf.h" | 35 | #include "servconf.h" |
24 | #include "canohost.h" | 36 | #include "canohost.h" |
37 | #include "key.h" | ||
38 | #include "hostfile.h" | ||
25 | #include "auth.h" | 39 | #include "auth.h" |
26 | 40 | ||
27 | /* import */ | 41 | /* import */ |