diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-07 22:34:42 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-07 22:34:42 +0000 |
commit | 3b119919d240cb012002c76fdb3bfc582b15a24f (patch) | |
tree | 486335be1d171fc12628c76f7ca9328efd7765ff /nss | |
parent | 0a4165120a0ee967ae40cd640be839e38e32be32 (diff) |
merge r865 from trunk
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@866 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nss')
-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; |