diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-02-01 21:51:56 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-02-01 21:51:56 +0000 |
commit | 7e126ec34ee493043efc55971135d7e132e2e175 (patch) | |
tree | bf2a764459d1f567e1fe4bf0ae1f0b339c1b0d98 /nslcd/util.h | |
parent | 20481e8d3b817d2f9c560aaf4a56581325ad1572 (diff) |
add new dictionary module and use it for the attribute mapping stuff
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@231 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/util.h')
-rw-r--r-- | nslcd/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nslcd/util.h b/nslcd/util.h index eacc7da..b64ee20 100644 --- a/nslcd/util.h +++ b/nslcd/util.h @@ -72,12 +72,12 @@ struct ldap_dictionary struct ldap_dictionary *next; }; -struct ldap_dictionary *dict_new(void); -enum nss_status dict_put(struct ldap_dictionary *db, +struct ldap_dictionary *old_dict_new(void); +enum nss_status old_dict_put(struct ldap_dictionary *db, unsigned flags, const struct ldap_datum *key, const struct ldap_datum *value); -enum nss_status dict_get(struct ldap_dictionary *db, +enum nss_status old_dict_get(struct ldap_dictionary *db, unsigned flags, const struct ldap_datum *key, struct ldap_datum *value); |