summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:08:02 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:08:02 +1100
commit015cd79ac5bbdac513e1a2c14ba4c5226c0a7ae0 (patch)
treeef994bf8510b9b0af8a77a17d1b33b6847b14d89
parente93eaaa0d1e8e6447eeb6f698f7da50ede0cb926 (diff)
- 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@
-rw-r--r--ChangeLog5
-rw-r--r--auth-rhosts.c6
-rw-r--r--includes.h5
3 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a7e9b02..6eaa7887 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
- jmc@cvs.openbsd.org 2006/02/06 21:44:47
[ssh.1]
make this a little less ambiguous...
+ - 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@
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3908,4 +3911,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4141 2006/03/15 00:05:59 djm Exp $
+$Id: ChangeLog,v 1.4142 2006/03/15 00:08:02 djm Exp $
diff --git a/auth-rhosts.c b/auth-rhosts.c
index aaba8557..9748a945 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"
diff --git a/includes.h b/includes.h
index 52081740..c23f94ce 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: includes.h,v 1.22 2006/01/01 08:59:27 stevesk Exp $ */
+/* $OpenBSD: includes.h,v 1.23 2006/02/07 01:08:04 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -51,9 +51,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
defined(GLOB_HAS_GL_MATCHC)
# include <glob.h>
#endif
-#ifdef HAVE_NETGROUP_H
-# include <netgroup.h>
-#endif
#ifdef HAVE_ENDIAN_H
# include <endian.h>
#endif