diff options
author | Volker Lendecke <vl@samba.org> | 2010-02-20 21:07:08 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-02-20 21:35:03 +0100 |
commit | 1e8a84aac73f02ac6eec53b5a13ec31347070210 (patch) | |
tree | a6ba1a286aff691c6811aa9a2f2adc6b53a5a4a9 /source3/torture | |
parent | 2beaa190295bc6e4c9e7f8a3768c74ad0a4359fe (diff) | |
download | samba-1e8a84aac73f02ac6eec53b5a13ec31347070210.tar.gz samba-1e8a84aac73f02ac6eec53b5a13ec31347070210.tar.bz2 samba-1e8a84aac73f02ac6eec53b5a13ec31347070210.zip |
s3: Add printf why LOCAL-dom_sid_parse failed
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 3 |
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; } |