diff options
author | Michael Adam <obnox@samba.org> | 2012-08-08 11:27:55 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-08-09 15:29:41 +0200 |
commit | 777c7a965b5824b8d038a3babb3754a1dfcd8fc2 (patch) | |
tree | ce5799fc48cbe3203c5e37fe30ea4f9095ee1276 /source3 | |
parent | c36deaf3af02531ff40d6960b8deaa0141bc2524 (diff) | |
download | samba-777c7a965b5824b8d038a3babb3754a1dfcd8fc2.tar.gz samba-777c7a965b5824b8d038a3babb3754a1dfcd8fc2.tar.xz samba-777c7a965b5824b8d038a3babb3754a1dfcd8fc2.zip |
s3:torture:delete: remove an else, reducing indentation
Diffstat (limited to 'source3')
-rw-r--r-- | source3/torture/torture.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index d2089253206..e364b17f7c2 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4007,8 +4007,9 @@ static bool run_deletetest(int dummy) cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN); correct = False; goto fail; - } else - printf("third delete on close test succeeded.\n"); + } + + printf("third delete on close test succeeded.\n"); /* Test 4 ... */ cli_setatr(cli1, fname, 0, 0); |