summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-02-20 21:07:08 +0100
committerVolker Lendecke <vl@samba.org>2010-02-20 21:35:03 +0100
commit1e8a84aac73f02ac6eec53b5a13ec31347070210 (patch)
treea6ba1a286aff691c6811aa9a2f2adc6b53a5a4a9 /source3
parent2beaa190295bc6e4c9e7f8a3768c74ad0a4359fe (diff)
downloadsamba-1e8a84aac73f02ac6eec53b5a13ec31347070210.tar.gz
samba-1e8a84aac73f02ac6eec53b5a13ec31347070210.tar.bz2
samba-1e8a84aac73f02ac6eec53b5a13ec31347070210.zip
s3: Add printf why LOCAL-dom_sid_parse failed
Diffstat (limited to 'source3')
-rw-r--r--source3/torture/torture.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
index ae1717338e..52cd016cb3 100644
--- a/source3/torture/torture.c
+++ b/source3/torture/torture.c
@@ -6761,12 +6761,15 @@ static bool run_local_dom_sid_parse(int dummy) {
struct dom_sid sid;
if (dom_sid_parse("S--1-5-32-545", &sid)) {
+ printf("allowing S--1-5-32-545\n");
return false;
}
if (dom_sid_parse("S-1-5-32-+545", &sid)) {
+ printf("allowing S-1-5-32-+545\n");
return false;
}
if (dom_sid_parse("S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0", &sid)) {
+ printf("allowing S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0\n");
return false;
}