diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-07 22:14:54 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-07 22:14:54 +0000 |
commit | ecc740add8c20c19164d1ca60d8bfd771e76123c (patch) | |
tree | b62c41549063b6f298eb11315abf9100d4ee14fa /nss/netgroup.c | |
parent | c0b0d69c55faea96e70477408b3feba94fcc877d (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.c | 4 |
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; |