diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-08 00:14:54 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2009-05-08 00:14:54 +0200 |
commit | ecc740add8c20c19164d1ca60d8bfd771e76123c (patch) | |
tree | b62c41549063b6f298eb11315abf9100d4ee14fa /nslcd/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 'nslcd/netgroup.c')
-rw-r--r-- | nslcd/netgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/netgroup.c b/nslcd/netgroup.c index bf78b6a..8f380a8 100644 --- a/nslcd/netgroup.c +++ b/nslcd/netgroup.c @@ -186,7 +186,7 @@ static int write_netgroup_triple(TFILE *fp,const char *triple) } /* write strings */ WRITE_INT32(fp,NSLCD_RESULT_BEGIN); - WRITE_INT32(fp,NETGROUP_TYPE_TRIPLE); + WRITE_INT32(fp,NSLCD_NETGROUP_TYPE_TRIPLE); WRITE_STRING_STRIPSPACE_LEN(fp,triple+hostb,hoste-hostb) WRITE_STRING_STRIPSPACE_LEN(fp,triple+userb,usere-userb) WRITE_STRING_STRIPSPACE_LEN(fp,triple+domainb,domaine-domainb) @@ -220,7 +220,7 @@ static int write_netgroup(TFILE *fp,MYLDAP_ENTRY *entry) /* write the result code */ WRITE_INT32(fp,NSLCD_RESULT_BEGIN); /* write triple indicator */ - WRITE_INT32(fp,NETGROUP_TYPE_NETGROUP); + WRITE_INT32(fp,NSLCD_NETGROUP_TYPE_NETGROUP); /* write netgroup name */ WRITE_STRING_STRIPSPACE(fp,members[i]); } |