From 5a7b5b30a1c5a17c281af944282015386bddbf96 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 8 Mar 2011 16:26:34 +0100 Subject: [PATCH] s3:ctdb: pass the ctdb control flags to the ctdb daemon when sending the control The only flag that is currently used is the NOREPLY flag to indicate that the client expects no reply packet. This needs to get passed down to the ctdb daemon so that it really does not send a reply. (cherry picked from commit 3c9ae69f34ba444bfcdc93923b2eee9ecde419de) Signed-off-by: Stefan Metzmacher --- source3/lib/ctdbd_conn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 4137bdd50309..45e992ce8b3a 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -814,6 +814,7 @@ static NTSTATUS ctdbd_control(struct ctdbd_connection *conn, req.opcode = opcode; req.srvid = srvid; req.datalen = data.dsize; + req.flags = flags; DEBUG(10, ("ctdbd_control: Sending ctdb packet\n")); ctdb_packet_dump(&req.hdr); -- 2.34.1