From c56eca05bf6922914a3d319fb9725f0401739f8f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 16 Apr 2003 10:24:24 +0000 Subject: NTSTATUS strings are much more use than raw numbers... (This used to be commit aeaa60c8432fe06ad51bac52f473e5fdc6c00afc) --- source3/sam/idmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/sam') diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c index 06fcc5a956..8b5e23de25 100644 --- a/source3/sam/idmap.c +++ b/source3/sam/idmap.c @@ -91,7 +91,7 @@ NTSTATUS idmap_set_mapping(const DOM_SID *sid, unid_t id, int id_type) ret = local_map->set_mapping(sid, id, id_type); if (NT_STATUS_IS_ERR(ret)) { DEBUG (0, ("idmap_set_mapping: Error, unable to modify local cache!\n")); - DEBUGADD(0, ("Error num. %d", NT_STATUS_V(ret))); + DEBUGADD(0, ("Error: %s", nt_errstr(ret))); return ret; } @@ -101,7 +101,7 @@ NTSTATUS idmap_set_mapping(const DOM_SID *sid, unid_t id, int id_type) remote_map->set_mapping(sid, id, id_type); if (NT_STATUS_IS_ERR(ret)) { DEBUG (0, ("idmap_set_mapping: Error, unable to modify remote cache!\n")); - DEBUGADD(0, ("Error num. %d", NT_STATUS_V(ret))); + DEBUGADD(0, ("Error: %s", nt_errstr(ret))); } } -- cgit