diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-18 17:40:25 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-10-18 17:40:25 -0700 |
commit | 30191d1a5704ad2b158386b511558972d539ce47 (patch) | |
tree | 4f46e5c4f28f672ab661aa18f45745860970a88c /source3/torture/denytest.c | |
parent | 789856f63ff73fec66298e95c91c60db7bdaf14e (diff) | |
download | samba-30191d1a5704ad2b158386b511558972d539ce47.tar.gz samba-30191d1a5704ad2b158386b511558972d539ce47.tar.xz samba-30191d1a5704ad2b158386b511558972d539ce47.zip |
RIP BOOL. Convert BOOL -> bool. I found a few interesting
bugs in various places whilst doing this (places that assumed
BOOL == int). I also need to fix the Samba4 pidl generation
(next checkin).
Jeremy.
(This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
Diffstat (limited to 'source3/torture/denytest.c')
-rw-r--r-- | source3/torture/denytest.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/torture/denytest.c b/source3/torture/denytest.c index 3787cd88d08..9b08552df7f 100644 --- a/source3/torture/denytest.c +++ b/source3/torture/denytest.c @@ -19,7 +19,7 @@ #include "includes.h" -extern BOOL torture_showall; +extern bool torture_showall; enum deny_result {A_0=0, A_X=1, A_R=2, A_W=3, A_RW=5}; @@ -1403,12 +1403,12 @@ static void progress_bar(unsigned i, unsigned total) /* this produces a matrix of deny mode behaviour for 1 connection */ -BOOL torture_denytest1(int dummy) +bool torture_denytest1(int dummy) { struct cli_state *cli1; int fnum1, fnum2; int i; - BOOL correct = True; + bool correct = True; const char *fnames[2] = {"\\denytest1.dat", "\\denytest1.exe"}; if (!torture_open_connection(&cli1, 0)) { @@ -1489,12 +1489,12 @@ BOOL torture_denytest1(int dummy) /* this produces a matrix of deny mode behaviour with 2 connections */ -BOOL torture_denytest2(int dummy) +bool torture_denytest2(int dummy) { static struct cli_state *cli1, *cli2; int fnum1, fnum2; int i; - BOOL correct = True; + bool correct = True; const char *fnames[2] = {"\\denytest2.dat", "\\denytest2.exe"}; if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) { |