1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

autorid: explicitly return NTSTATUS_OK in idmap_autorid_sid_to_id_alloc().

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Michael Adam 2014-04-11 18:20:56 +02:00
parent 79a245808c
commit 5d7b1363f0

View File

@ -394,7 +394,7 @@ static NTSTATUS idmap_autorid_sid_to_id_alloc(struct idmap_domain *dom,
res = dbwrap_transaction_commit(ctx->db);
if (res == 0) {
map->status = ID_MAPPED;
return ret;
return NT_STATUS_OK;
}
DEBUG(2, ("transaction_commit failed\n"));