diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-08-18 21:35:56 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-08-18 21:35:56 +0200 |
commit | 3d531f6a73d6af0ad5444f9ddeb7cd6ac8fec64e (patch) | |
tree | 2825de651d7c8cdd76dc821b640aaa3795cc0772 /nslcd/attmap.h | |
parent | 1a79a08b416d2c611afd51d143c4d74efecd7b9e (diff) |
rewrite configuration file handling to be simpler and more consistent, this does mean that the syntax of the configfile has changed from the PADL one and that some options were removed (also update manual page and sample config file to reflect changes)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@343 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/attmap.h')
-rw-r--r-- | nslcd/attmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nslcd/attmap.h b/nslcd/attmap.h index acf8341..abb1287 100644 --- a/nslcd/attmap.h +++ b/nslcd/attmap.h @@ -23,6 +23,7 @@ #ifndef _ATTMAP_H #define _ATTMAP_H 1 +#include "ldap-nss.h" /* What follows is a list of attribute names per database. */ @@ -179,6 +180,6 @@ extern const char *attmap_shadow_shadowFlag; /* return a reference to the attribute mapping variable for the specified name the name is the name after the attmap_... variables above with the underscode replaced by a dot (e.g passwd.homeDirectory) */ -const char **attmap_get_var(const char *name); +const char **attmap_get_var(enum ldap_map_selector map,const char *name); #endif /* not _ATTMAP_H */ |