From bda7d3134ecc547b9c174a04fd2d02813b06f038 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. --- 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 60174d7d23..1e0024199a 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