summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/winbindd/idmap_util.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/winbindd/idmap_util.c b/source3/winbindd/idmap_util.c
index bf06cd8472..0d24070dd6 100644
--- a/source3/winbindd/idmap_util.c
+++ b/source3/winbindd/idmap_util.c
@@ -157,11 +157,10 @@ NTSTATUS idmap_sid_to_gid(DOM_SID *sid, gid_t *gid)
}
if ((map.status != ID_MAPPED) || (map.xid.type != ID_TYPE_GID)) {
- DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u,%u]\n",
+ DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u]\n",
sid_string_dbg(sid),
map.status,
- map.xid.type,
- map.xid.id));
+ map.xid.type));
return NT_STATUS_NONE_MAPPED;
}