diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-07-24 15:38:56 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-07-24 15:38:56 +0200 |
commit | d6f0e2fbfde1a928580cbfdd6845facf2ff1aea2 (patch) | |
tree | 2f6fbb9914f283a068672551254eacc9ade34f7b /nslcd/ldap-schema.h | |
parent | faee906ac541a533b61d1b51aad34fde4f3f8509 (diff) |
switch to a new interface for doing attribute mapping, splitting the attribute mapping stuff into a separate file
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@326 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/ldap-schema.h')
-rw-r--r-- | nslcd/ldap-schema.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/nslcd/ldap-schema.h b/nslcd/ldap-schema.h index 360b642..94471d6 100644 --- a/nslcd/ldap-schema.h +++ b/nslcd/ldap-schema.h @@ -94,31 +94,10 @@ extern char _nss_ldap_filt_getspent[]; extern char _nss_ldap_filt_getnetgrent[]; /** - * Initialize attribute vector table indexed by map - * selector (eg. LM_PASSWD) relative to an "ldap_config" - */ - - - - -/** - * Lookup (potentially mapped) - * objectclass/attribute. - */ -/* these functions are defined in ldap-nss.[ch] */ -#define OC(oc) _nss_ldap_map_oc(LM_NONE, OC##_##oc) -#define OCM(map, at) _nss_ldap_map_oc(map, AT##_##at) -#define AT(at) _nss_ldap_map_at(LM_NONE, AT##_##at) -#define ATM(map, at) _nss_ldap_map_at(map, AT##_##at) - -/** * Common attributes, not from RFC 2307. */ #define AT_objectClass "objectClass" #define AT_cn "cn" -#define AT_description "description" -#define AT_l "l" -#define AT_manager "manager" /** * Vendor-specific attributes and object classes. |