mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
r6432: Restorin previous construction of conditions after a little discussion
with Richard and Andrew.
rafal
(This used to be commit 400f6d5f87
)
This commit is contained in:
parent
03cae64229
commit
9fd63bde85
@ -225,7 +225,9 @@ BOOL torture_userinfo(void)
|
||||
DCERPC_SAMR_UUID,
|
||||
DCERPC_SAMR_VERSION);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) return False;
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
name.string = lp_workgroup();
|
||||
|
||||
|
@ -251,7 +251,9 @@ BOOL torture_useradd(void)
|
||||
DCERPC_SAMR_UUID,
|
||||
DCERPC_SAMR_VERSION);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) return False;
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
domain_name.string = lp_workgroup();
|
||||
if (!test_opendomain(p, mem_ctx, &h, &domain_name)) {
|
||||
@ -296,7 +298,9 @@ BOOL torture_userdel(void)
|
||||
DCERPC_SAMR_UUID,
|
||||
DCERPC_SAMR_VERSION);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) return False;
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
domain_name.string = lp_workgroup();
|
||||
if (!test_opendomain(p, mem_ctx, &h, &domain_name)) {
|
||||
|
Loading…
Reference in New Issue
Block a user