From: Ronnie Sahlberg Date: Sat, 5 Jun 2010 04:21:42 +0000 (+1000) Subject: Update the ctdb tool to use the new signature for ctdb_connect() X-Git-Tag: ctdb-1.9.1~30 X-Git-Url: http://git.samba.org/?p=rusty%2Fctdb.git;a=commitdiff_plain;h=ced3bc40f841d353bc86a6ee9dd1868473223f52 Update the ctdb tool to use the new signature for ctdb_connect() --- diff --git a/tools/ctdb.c b/tools/ctdb.c index fc74ffbf..b7e7df36 100644 --- a/tools/ctdb.c +++ b/tools/ctdb.c @@ -4566,7 +4566,8 @@ int main(int argc, const char *argv[]) /* initialize a libctdb connection as well */ socket_name = ctdb_get_socketname(ctdb); - ctdb_connection = ctdb_connect(socket_name); + ctdb_connection = ctdb_connect(socket_name, + ctdb_log_file, stderr); if (ctdb_connection == NULL) { fprintf(stderr, "Failed to connect to daemon from libctdb\n"); exit(1);