diff options
author | Gerald Carter <jerry@samba.org> | 2003-06-06 13:48:39 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-06-06 13:48:39 +0000 |
commit | 1665926281ed2be3c5affca551c9d458d013fc7f (patch) | |
tree | 83c4c765fe424dca70d030c0df9c6380a8da1f1d /source/include/idmap.h | |
parent | 999cde3227210c90132ade3812e964087f04e541 (diff) | |
download | samba-1665926281ed2be3c5affca551c9d458d013fc7f.tar.gz |
* break out more common code used between pdb_ldap and idmap_ldap
* remove 'winbind uid' and 'winbind gid' parameters (replaced
by current idmap parameter)
* create the sambaUnixIdPool entries automatically in the 'ldap
idmap suffix'
* add new 'ldap idmap suffix' and 'ldap group suffix' parametrer
* "idmap backend = ldap" now accepts 'ldap:ldap://server/' format
(parameters are passed to idmap init() function
Diffstat (limited to 'source/include/idmap.h')
-rw-r--r-- | source/include/idmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/idmap.h b/source/include/idmap.h index 1267ac27bc1..4b38128c2f2 100644 --- a/source/include/idmap.h +++ b/source/include/idmap.h @@ -39,7 +39,7 @@ struct idmap_methods { /* Called when backend is first loaded */ - NTSTATUS (*init)(void); + NTSTATUS (*init)( char *params ); NTSTATUS (*get_sid_from_id)(DOM_SID *sid, unid_t id, int id_type); NTSTATUS (*get_id_from_sid)(unid_t *id, int *id_type, const DOM_SID *sid); |