diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-27 18:10:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:54 -0500 |
commit | 61ffa08f4c95e29d301de9fbabd6e71c2dbc1056 (patch) | |
tree | 5639bb3b7628532080737e4e1b1ff0b835ee4977 /source4/wrepl_server/wrepl_server.h | |
parent | 4fb038b0b8e7a4bb69ac0d9022684eeaca8a491a (diff) | |
download | samba-61ffa08f4c95e29d301de9fbabd6e71c2dbc1056.tar.gz samba-61ffa08f4c95e29d301de9fbabd6e71c2dbc1056.tar.xz samba-61ffa08f4c95e29d301de9fbabd6e71c2dbc1056.zip |
r24712: No longer expose the 'BOOL' data type in any interfaces.
(This used to be commit 1ce32673d960c8b05b6c1b1b99e1976a402417ae)
Diffstat (limited to 'source4/wrepl_server/wrepl_server.h')
-rw-r--r-- | source4/wrepl_server/wrepl_server.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/wrepl_server/wrepl_server.h b/source4/wrepl_server/wrepl_server.h index 11af537f026..a001c6b3ae5 100644 --- a/source4/wrepl_server/wrepl_server.h +++ b/source4/wrepl_server/wrepl_server.h @@ -34,7 +34,7 @@ struct wreplsrv_in_call { struct wreplsrv_in_connection *wreplconn; struct wrepl_packet req_packet; struct wrepl_packet rep_packet; - BOOL terminate_after_send; + bool terminate_after_send; }; /* @@ -57,7 +57,7 @@ struct wreplsrv_in_connection { /* keep track of the assoc_ctx's */ struct { - BOOL stopped; + bool stopped; uint32_t our_ctx; uint32_t peer_ctx; } assoc_ctx; @@ -166,7 +166,7 @@ struct wreplsrv_partner { uint64_t maxVersionID; /* we should use WREPL_REPL_INFORM* messages to this partner */ - BOOL use_inform; + bool use_inform; /* the error count till the last success */ uint32_t error_count; @@ -303,7 +303,7 @@ struct wreplsrv_service { /* * are we currently inside a scavenging run */ - BOOL processing; + bool processing; } scavenging; }; |