diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-10-08 14:22:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:07:59 -0500 |
commit | dae6a2453250b01079d2064bcb0cac48a2e5d1e5 (patch) | |
tree | 459bd85f6115a4b5d4f2804c82499e259d9061ca /source4/torture/nbt | |
parent | b0ef52e959265932c848a888453937162e3414ef (diff) | |
download | samba-dae6a2453250b01079d2064bcb0cac48a2e5d1e5.tar.gz samba-dae6a2453250b01079d2064bcb0cac48a2e5d1e5.tar.bz2 samba-dae6a2453250b01079d2064bcb0cac48a2e5d1e5.zip |
r25579: BOOL -> bool
metze
(This used to be commit 058a0619e9218586e73ae920f45621cf00d8b828)
Diffstat (limited to 'source4/torture/nbt')
-rw-r--r-- | source4/torture/nbt/browse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/nbt/browse.c b/source4/torture/nbt/browse.c index a9aac79469..e609e72055 100644 --- a/source4/torture/nbt/browse.c +++ b/source4/torture/nbt/browse.c @@ -33,7 +33,7 @@ bool torture_nbt_browse(struct torture_context *torture) struct nbt_name name; TALLOC_CTX *mem_ctx = talloc_new(NULL); NTSTATUS status; - BOOL ret = True; + bool ret = true; name.name = lp_workgroup(); name.type = NBT_NAME_BROWSER; @@ -45,7 +45,7 @@ bool torture_nbt_browse(struct torture_context *torture) printf("Failed to resolve %s - %s\n", name.name, nt_errstr(status)); talloc_free(mem_ctx); - return False; + return false; } talloc_free(mem_ctx); |