summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-04-23 21:52:07 +0200
committerMichael Adam <obnox@samba.org>2014-04-25 15:35:08 +0200
commit377091a06580616ff5861751fa5eaacc7c08db65 (patch)
tree0aa9dadb31722480ab2b8373ca5f17b52721dbd2
parentd50c0077deefbb32af1a15205b32d928807d86a3 (diff)
downloadsamba-377091a06580616ff5861751fa5eaacc7c08db65.tar.gz
idmap_tdb_common: fix a debug message in idmap_tdb_common_unixid_to_sid()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r--source3/winbindd/idmap_tdb_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap_tdb_common.c b/source3/winbindd/idmap_tdb_common.c
index 5713fe2f4fb..d46b812d716 100644
--- a/source3/winbindd/idmap_tdb_common.c
+++ b/source3/winbindd/idmap_tdb_common.c
@@ -413,7 +413,7 @@ NTSTATUS idmap_tdb_common_unixid_to_sid(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;
}