From 0ed60d757d3cb134eb74e559bc3288b44cf74a6f Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Thu, 26 Nov 2015 13:50:14 +1100 Subject: [PATCH] ctdb-protocol: Fix marshaling of seqnum Signed-off-by: Amitay Isaacs Reviewed-by: Martin Schwenke --- ctdb/protocol/protocol_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctdb/protocol/protocol_control.c b/ctdb/protocol/protocol_control.c index 95edc1a2c34..1c8364e3b0c 100644 --- a/ctdb/protocol/protocol_control.c +++ b/ctdb/protocol/protocol_control.c @@ -713,7 +713,7 @@ static void ctdb_req_control_data_push(struct ctdb_req_control_data *cd, case CTDB_CONTROL_GET_DB_SEQNUM: u64 = cd->data.db_id; - ctdb_uint32_push(u64, buf); + ctdb_uint64_push(u64, buf); break; case CTDB_CONTROL_DB_SET_HEALTHY: -- 2.34.1