diff options
Diffstat (limited to 'source4/wrepl_server')
-rw-r--r-- | source4/wrepl_server/wrepl_out_helpers.h | 4 | ||||
-rw-r--r-- | source4/wrepl_server/wrepl_server.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/source4/wrepl_server/wrepl_out_helpers.h b/source4/wrepl_server/wrepl_out_helpers.h index ac59cbd1d7..92bbe561af 100644 --- a/source4/wrepl_server/wrepl_out_helpers.h +++ b/source4/wrepl_server/wrepl_out_helpers.h @@ -31,7 +31,7 @@ struct wreplsrv_pull_cycle_io { struct wreplsrv_push_notify_io { struct { struct wreplsrv_partner *partner; - BOOL inform; - BOOL propagate; + bool inform; + bool propagate; } in; }; diff --git a/source4/wrepl_server/wrepl_server.h b/source4/wrepl_server/wrepl_server.h index 11af537f02..a001c6b3ae 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; }; |