summaryrefslogtreecommitdiff
path: root/source4/torture
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-11-11 10:50:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:12 -0500
commit75a807425c0a6c2da11b4eeee1326dc1f61fc14d (patch)
treeab03c633e886cf6188fc9c6658c4be9e1c9bcce2 /source4/torture
parent1598aaca9579f4e2ca9d1fd539693969a2319a4b (diff)
downloadsamba-75a807425c0a6c2da11b4eeee1326dc1f61fc14d.tar.gz
samba-75a807425c0a6c2da11b4eeee1326dc1f61fc14d.tar.bz2
samba-75a807425c0a6c2da11b4eeee1326dc1f61fc14d.zip
r11677: print leading zeros
metze (This used to be commit 19fb79b35d6d0b20d01f3722754cdd734bebc2ba)
Diffstat (limited to 'source4/torture')
-rw-r--r--source4/torture/smb2/connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/smb2/connect.c b/source4/torture/smb2/connect.c
index 8b5a26bce3..39131a74f2 100644
--- a/source4/torture/smb2/connect.c
+++ b/source4/torture/smb2/connect.c
@@ -159,7 +159,7 @@ static struct smb2_session *torture_smb2_session(struct smb2_transport *transpor
return NULL;
}
- printf("Session setup gave UID 0x%llx\n", session->uid);
+ printf("Session setup gave UID 0x%016llx\n", session->uid);
return session;
}
@@ -188,7 +188,7 @@ static struct smb2_tree *torture_smb2_tree(struct smb2_session *session,
return NULL;
}
- printf("Tree connect gave tid = 0x%llx\n", io.out.tid);
+ printf("Tree connect gave tid = 0x%016llx\n", io.out.tid);
return tree;
}