From 1ed330f7cbd753b6c29246d522c5ddca5160d8bb Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Tue, 24 Jun 2014 11:46:53 +1000 Subject: [PATCH] ctdb-daemon: Use false instead of 0 for boolean arguments Signed-off-by: Amitay Isaacs Reviewed-by: Stefan Metzmacher --- ctdb/server/ctdb_ltdb_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctdb/server/ctdb_ltdb_server.c b/ctdb/server/ctdb_ltdb_server.c index 7738f763465..14bfdc32a6f 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); -- 2.34.1