diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 01:45:54 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 01:45:54 +0100 |
commit | f17883e6a0f9462c8bc163cce44331862581b0cb (patch) | |
tree | 3e298f6761b40b7be32c76f529f92b1f276cb329 /auth-rhosts.c | |
parent | - stevesk@cvs.openbsd.org 2006/02/20 16:36:15 (diff) | |
download | openssh-f17883e6a0f9462c8bc163cce44331862581b0cb.tar.xz openssh-f17883e6a0f9462c8bc163cce44331862581b0cb.zip |
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c]
[serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c]
move #include <signal.h> out of includes.h; ok markus@
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r-- | auth-rhosts.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c index 9748a9457..1deeb30b9 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c @@ -14,7 +14,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rhosts.c,v 1.34 2006/02/07 01:08:04 stevesk Exp $"); +RCSID("$OpenBSD: auth-rhosts.c,v 1.35 2006/02/20 17:19:53 stevesk Exp $"); + +#include <sys/types.h> +#include <sys/stat.h> #ifdef HAVE_NETGROUP_H # include <netgroup.h> |