From: Jeremy Allison Date: Mon, 30 Jun 2003 21:04:12 +0000 (+0000) Subject: Fix missing ret = found by Volker. X-Git-Tag: samba-4.0.0alpha6~801^2~13399 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=81befd3c7177f7b4dd3c6b9f06e307d6a8cf8c47;p=ira%2Fwip.git Fix missing ret = found by Volker. Jeremy. (This used to be commit ba112bb3fdb4e81d8f6ab1ccc4a68960f71ccb23) --- diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c index 7e50fe1906f..98588060da8 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)));