From 11b3937dddae1422fbacff7a0a639f6b40901275 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 24 Apr 2014 17:18:34 +0200 Subject: [PATCH] idmap_tdb_common: fix a debug message in idmap_tdb_common_set_mapping() Signed-off-by: Michael Adam Reviewed-by: Michael Adam --- source3/winbindd/idmap_tdb_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/winbindd/idmap_tdb_common.c b/source3/winbindd/idmap_tdb_common.c index d46b812d716..ffa2bd40eab 100644 --- a/source3/winbindd/idmap_tdb_common.c +++ b/source3/winbindd/idmap_tdb_common.c @@ -252,7 +252,7 @@ NTSTATUS idmap_tdb_common_set_mapping(struct idmap_domain * dom, break; default: - DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type)); + DEBUG(2, ("INVALID unix ID type: 0x%02x\n", map->xid.type)); return NT_STATUS_INVALID_PARAMETER; } -- 2.34.1