diff options
author | Amitay Isaacs <amitay@gmail.com> | 2014-06-24 11:46:53 +1000 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2014-07-09 04:19:12 +0200 |
commit | 1ed330f7cbd753b6c29246d522c5ddca5160d8bb (patch) | |
tree | e840359faa0a60e146a1f90663512e55648097d3 | |
parent | f01af728fedc86a5802a2ba30545d62fc6d610d3 (diff) | |
download | samba-1ed330f7cbd753b6c29246d522c5ddca5160d8bb.tar.gz samba-1ed330f7cbd753b6c29246d522c5ddca5160d8bb.tar.xz samba-1ed330f7cbd753b6c29246d522c5ddca5160d8bb.zip |
ctdb-daemon: Use false instead of 0 for boolean arguments
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | ctdb/server/ctdb_ltdb_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_ltdb_server.c b/ctdb/server/ctdb_ltdb_server.c index 7738f76346..14bfdc32a6 100644 --- a/ctdb/server/ctdb_ltdb_server.c +++ b/ctdb/server/ctdb_ltdb_server.c @@ -1307,7 +1307,7 @@ static int ctdb_attach_persistent(struct ctdb_context *ctdb, } p[4] = 0; - if (ctdb_local_attach(ctdb, s, true, unhealthy_reason, 0) != 0) { + if (ctdb_local_attach(ctdb, s, true, unhealthy_reason, false) != 0) { DEBUG(DEBUG_ERR,("Failed to attach to persistent database '%s'\n", de->d_name)); closedir(d); talloc_free(s); |