summaryrefslogtreecommitdiff
path: root/nss/netgroup.c
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2009-05-07 22:14:54 +0000
committerArthur de Jong <arthur@arthurdejong.org>2009-05-07 22:14:54 +0000
commitecc740add8c20c19164d1ca60d8bfd771e76123c (patch)
treeb62c41549063b6f298eb11315abf9100d4ee14fa /nss/netgroup.c
parentc0b0d69c55faea96e70477408b3feba94fcc877d (diff)
prefix NETGROUP_TYPE macros with NSLCD_
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@864 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nss/netgroup.c')
-rw-r--r--nss/netgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/netgroup.c b/nss/netgroup.c
index 9d82f04..57299ea 100644
--- a/nss/netgroup.c
+++ b/nss/netgroup.c
@@ -49,13 +49,13 @@ static enum nss_status read_netgrent(
size_t bufptr=0;
/* read netgroup type */
READ_INT32(fp,type);
- if (type==NETGROUP_TYPE_NETGROUP)
+ if (type==NSLCD_NETGROUP_TYPE_NETGROUP)
{
/* the response is a reference to another netgroup */
result->type=group_val;
READ_STRING_BUF(fp,result->val.group);
}
- else if (type==NETGROUP_TYPE_TRIPLE)
+ else if (type==NSLCD_NETGROUP_TYPE_TRIPLE)
{
/* the response is a host/user/domain triple */
result->type=triple_val;