diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 01:08:02 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 01:08:02 +0100 |
commit | 015cd79ac5bbdac513e1a2c14ba4c5226c0a7ae0 (patch) | |
tree | ef994bf8510b9b0af8a77a17d1b33b6847b14d89 /auth-rhosts.c | |
parent | - jmc@cvs.openbsd.org 2006/02/06 21:44:47 (diff) | |
download | openssh-015cd79ac5bbdac513e1a2c14ba4c5226c0a7ae0.tar.xz openssh-015cd79ac5bbdac513e1a2c14ba4c5226c0a7ae0.zip |
- stevesk@cvs.openbsd.org 2006/02/07 01:08:04
[auth-rhosts.c includes.h]
move #include <netgroup.h> out of includes.h; ok markus@
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r-- | auth-rhosts.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c index aaba8557e..9748a9457 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c @@ -14,7 +14,11 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rhosts.c,v 1.33 2005/07/17 07:17:54 djm Exp $"); +RCSID("$OpenBSD: auth-rhosts.c,v 1.34 2006/02/07 01:08:04 stevesk Exp $"); + +#ifdef HAVE_NETGROUP_H +# include <netgroup.h> +#endif #include "packet.h" #include "uidswap.h" |