summaryrefslogtreecommitdiffstats
path: root/contrib/bind/lib/irs/dns_gr.c
diff options
context:
space:
mode:
authornectar <nectar@FreeBSD.org>2002-02-04 19:12:46 +0000
committernectar <nectar@FreeBSD.org>2002-02-04 19:12:46 +0000
commitebeabb1ba32f14e308ae9aff9a2a7151265259cf (patch)
tree71ba64d0a82be4894e23f6d65f36b61203ec3875 /contrib/bind/lib/irs/dns_gr.c
parent1385a0dca8f9199ece158336f4c6a9f1e2e03c3e (diff)
downloadFreeBSD-src-ebeabb1ba32f14e308ae9aff9a2a7151265259cf.zip
FreeBSD-src-ebeabb1ba32f14e308ae9aff9a2a7151265259cf.tar.gz
Import of ISC BIND 8.3.1-REL.
Diffstat (limited to 'contrib/bind/lib/irs/dns_gr.c')
-rw-r--r--contrib/bind/lib/irs/dns_gr.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/contrib/bind/lib/irs/dns_gr.c b/contrib/bind/lib/irs/dns_gr.c
index 64cbe9b..a622345 100644
--- a/contrib/bind/lib/irs/dns_gr.c
+++ b/contrib/bind/lib/irs/dns_gr.c
@@ -16,7 +16,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static const char rcsid[] = "$Id: dns_gr.c,v 1.19 1999/01/18 07:46:48 vixie Exp $";
+static const char rcsid[] = "$Id: dns_gr.c,v 1.20 2001/05/29 05:48:27 marka Exp $";
#endif
/*
@@ -146,6 +146,9 @@ gr_close(struct irs_gr *this) {
static struct group *
gr_next(struct irs_gr *this) {
+
+ UNUSED(this);
+
return (NULL);
}
@@ -164,6 +167,9 @@ gr_bygid(struct irs_gr *this, gid_t gid) {
static void
gr_rewind(struct irs_gr *this) {
+
+ UNUSED(this);
+
/* NOOP */
}
@@ -171,6 +177,11 @@ static int
gr_list(struct irs_gr *this, const char *name,
gid_t basegid, gid_t *groups, int *ngroups)
{
+ UNUSED(this);
+ UNUSED(name);
+ UNUSED(basegid);
+ UNUSED(groups);
+
*ngroups = 0;
/* There's some way to do this in Hesiod. */
return (-1);
@@ -178,6 +189,8 @@ gr_list(struct irs_gr *this, const char *name,
static void
gr_minimize(struct irs_gr *this) {
+
+ UNUSED(this);
/* NOOP */
}
OpenPOWER on IntegriCloud