summaryrefslogtreecommitdiff
path: root/source3/winbindd/idmap_tdb2.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-01-22 15:52:34 +0100
committerMichael Adam <obnox@samba.org>2010-08-14 02:10:35 +0200
commit672ab10ee784fcfc3270df3e7665f74ff08f7d40 (patch)
tree220ef8d07badf247daed6a0f72f7c9f6d1f72ce8 /source3/winbindd/idmap_tdb2.c
parent0f913731563e3265ccc17589a01b5667c45019ec (diff)
downloadsamba-672ab10ee784fcfc3270df3e7665f74ff08f7d40.tar.gz
samba-672ab10ee784fcfc3270df3e7665f74ff08f7d40.tar.bz2
samba-672ab10ee784fcfc3270df3e7665f74ff08f7d40.zip
s3:idmap: remove unused method dump_data() from the idmap API
Michael
Diffstat (limited to 'source3/winbindd/idmap_tdb2.c')
-rw-r--r--source3/winbindd/idmap_tdb2.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c
index d6f7460ce2..bd30a25393 100644
--- a/source3/winbindd/idmap_tdb2.c
+++ b/source3/winbindd/idmap_tdb2.c
@@ -934,22 +934,11 @@ static NTSTATUS idmap_tdb2_close(struct idmap_domain *dom)
return NT_STATUS_OK;
}
-
-/*
- Dump all mappings out
-*/
-static NTSTATUS idmap_tdb2_dump_data(struct idmap_domain *dom, struct id_map **maps, int *num_maps)
-{
- DEBUG(0,("idmap_tdb2_dump_data not supported\n"));
- return NT_STATUS_NOT_SUPPORTED;
-}
-
static struct idmap_methods db_methods = {
.init = idmap_tdb2_db_init,
.unixids_to_sids = idmap_tdb2_unixids_to_sids,
.sids_to_unixids = idmap_tdb2_sids_to_unixids,
.set_mapping = idmap_tdb2_set_mapping,
- .dump_data = idmap_tdb2_dump_data,
.close_fn = idmap_tdb2_close
};