From 0e240bd6a96f1270509bd12e7b083bef7d55e99f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 8 Mar 2011 16:26:34 +0100 Subject: 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(+) (limited to 'source3/lib/ctdbd_conn.c') diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index cad28a8cd6..a81691a8c9 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -818,6 +818,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); -- cgit