summaryrefslogtreecommitdiff
path: root/source3/sam
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-07-03 12:05:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:58:11 -0500
commit3a8af94424c8d60dd80f6b57806ef0b79465badc (patch)
tree9189748ee4115aa555d339c87bf7607469ac7201 /source3/sam
parentd10c664b6151d3296d2fde5dc9833ea90e7ea0e8 (diff)
downloadsamba-3a8af94424c8d60dd80f6b57806ef0b79465badc.tar.gz
samba-3a8af94424c8d60dd80f6b57806ef0b79465badc.tar.bz2
samba-3a8af94424c8d60dd80f6b57806ef0b79465badc.zip
r8093: Next round. Now it compiles with --enable-socket-wrapper.
Volker (This used to be commit 25cbcfba30f534f3fb31627ba43421c42ccd5b0f)
Diffstat (limited to 'source3/sam')
-rw-r--r--source3/sam/idmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c
index 91fe97e23a..ec3ccb2985 100644
--- a/source3/sam/idmap.c
+++ b/source3/sam/idmap.c
@@ -353,14 +353,14 @@ NTSTATUS idmap_close(void)
if (proxyonly)
return NT_STATUS_OK;
- ret = cache_map->close();
+ ret = cache_map->close_fn();
if (!NT_STATUS_IS_OK(ret)) {
DEBUG(3, ("idmap_close: failed to close local tdb cache!\n"));
}
cache_map = NULL;
if (remote_map) {
- ret = remote_map->close();
+ ret = remote_map->close_fn();
if (!NT_STATUS_IS_OK(ret)) {
DEBUG(3, ("idmap_close: failed to close remote idmap repository!\n"));
}