diff options
Diffstat (limited to 'source3/sam')
-rw-r--r-- | source3/sam/idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c index 7e50fe1906..98588060da 100644 --- a/source3/sam/idmap.c +++ b/source3/sam/idmap.c @@ -162,7 +162,7 @@ NTSTATUS idmap_set_mapping(const DOM_SID *sid, unid_t id, int id_type) /* Being able to update the remote cache is seldomly right. Generally this is a forbidden operation. */ if (!(id_type & ID_CACHE_SAVE) && (remote_map != NULL)) { - remote_map->set_mapping(sid, id, id_type); + ret = remote_map->set_mapping(sid, id, id_type); if (!NT_STATUS_IS_OK(ret)) { DEBUG (0, ("idmap_set_mapping: Error, unable to modify remote cache!\n")); DEBUGADD(0, ("Error: %s", nt_errstr(ret))); |