summaryrefslogtreecommitdiff
path: root/source4/torture/nbt
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-08 14:22:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:07:59 -0500
commitdae6a2453250b01079d2064bcb0cac48a2e5d1e5 (patch)
tree459bd85f6115a4b5d4f2804c82499e259d9061ca /source4/torture/nbt
parentb0ef52e959265932c848a888453937162e3414ef (diff)
downloadsamba-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.c4
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);