summaryrefslogtreecommitdiff
path: root/source4/nbt_server/interfaces.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-10-06 21:33:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:07:52 -0500
commitcac2379a2fc570308f24142959fabe5ae4462aff (patch)
treed3b089e3b3527e9208c639a00b8208caeba6d2ed /source4/nbt_server/interfaces.c
parent6bc52259aa668666f2f40abfd8da181d5aaf8b6e (diff)
downloadsamba-cac2379a2fc570308f24142959fabe5ae4462aff.tar.gz
samba-cac2379a2fc570308f24142959fabe5ae4462aff.tar.bz2
samba-cac2379a2fc570308f24142959fabe5ae4462aff.zip
r25546: Convert to standard bool type.
(This used to be commit ac83dbf199fd442fc994d43a6e5e9fda8d4c88b6)
Diffstat (limited to 'source4/nbt_server/interfaces.c')
-rw-r--r--source4/nbt_server/interfaces.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/nbt_server/interfaces.c b/source4/nbt_server/interfaces.c
index 27d733aeff..f2a875142a 100644
--- a/source4/nbt_server/interfaces.c
+++ b/source4/nbt_server/interfaces.c
@@ -282,7 +282,7 @@ const char **nbtd_address_list(struct nbtd_interface *iface, TALLOC_CTX *mem_ctx
struct nbtd_server *nbtsrv = iface->nbtsrv;
const char **ret = NULL;
struct nbtd_interface *iface2;
- BOOL is_loopback = False;
+ bool is_loopback = false;
if (iface->ip_address) {
is_loopback = iface_same_net(iface->ip_address, "127.0.0.1", "255.0.0.0");
@@ -313,7 +313,7 @@ const char **nbtd_address_list(struct nbtd_interface *iface, TALLOC_CTX *mem_ctx
find the interface to use for sending a outgoing request
*/
struct nbtd_interface *nbtd_find_request_iface(struct nbtd_server *nbtd_server,
- const char *address, BOOL allow_bcast_iface)
+ const char *address, bool allow_bcast_iface)
{
struct nbtd_interface *cur;
@@ -337,7 +337,7 @@ struct nbtd_interface *nbtd_find_request_iface(struct nbtd_server *nbtd_server,
* find the interface to use for sending a outgoing reply
*/
struct nbtd_interface *nbtd_find_reply_iface(struct nbtd_interface *iface,
- const char *address, BOOL allow_bcast_iface)
+ const char *address, bool allow_bcast_iface)
{
struct nbtd_server *nbtd_server = iface->nbtsrv;