diff options
author | Michael Adam <obnox@samba.org> | 2009-01-22 14:44:24 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-08-14 02:10:34 +0200 |
commit | 0f913731563e3265ccc17589a01b5667c45019ec (patch) | |
tree | ab2283427e546730502c03d58c1352784130e627 /source3/winbindd/idmap_adex | |
parent | d888e726a9b1e1e1603211821a71fd88aea566c7 (diff) | |
download | samba-0f913731563e3265ccc17589a01b5667c45019ec.tar.gz samba-0f913731563e3265ccc17589a01b5667c45019ec.tar.bz2 samba-0f913731563e3265ccc17589a01b5667c45019ec.zip |
s3:idmap: remove the remove_mapping method from API and backends
Michael
Diffstat (limited to 'source3/winbindd/idmap_adex')
-rw-r--r-- | source3/winbindd/idmap_adex/idmap_adex.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/source3/winbindd/idmap_adex/idmap_adex.c b/source3/winbindd/idmap_adex/idmap_adex.c index ea6d688b72..d5c624e23f 100644 --- a/source3/winbindd/idmap_adex/idmap_adex.c +++ b/source3/winbindd/idmap_adex/idmap_adex.c @@ -268,20 +268,6 @@ static NTSTATUS _idmap_adex_set_mapping(struct /********************************************************************** *********************************************************************/ -static NTSTATUS _idmap_adex_remove_mapping(struct - idmap_domain - *dom, const - struct - id_map - *map) -{ - DEBUG(0, ("_idmap_adex_remove_mapping: not implemented\n")); - return NT_STATUS_NOT_IMPLEMENTED; -} - -/********************************************************************** - *********************************************************************/ - static NTSTATUS _idmap_adex_dump(struct idmap_domain *dom, struct id_map **maps, int *num_map) { @@ -420,7 +406,6 @@ static struct idmap_methods adex_idmap_methods = { .unixids_to_sids = _idmap_adex_get_sid_from_id, .sids_to_unixids = _idmap_adex_get_id_from_sid, .set_mapping = _idmap_adex_set_mapping, - .remove_mapping = _idmap_adex_remove_mapping, .dump_data = _idmap_adex_dump, .close_fn = _idmap_adex_close }; |