mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r6432: Restorin previous construction of conditions after a little discussion
with Richard and Andrew. rafal
This commit is contained in:
parent
91df25a795
commit
400f6d5f87
@ -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