renamed the pulldb structure to a ctdb_marshall_buffer
authorAndrew Tridgell <tridge@samba.org>
Wed, 30 Jul 2008 09:59:18 +0000 (19:59 +1000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 30 Jul 2008 09:59:18 +0000 (19:59 +1000)
server/ctdb_recover.c
server/ctdb_recoverd.c

index 2b7489849ce317d98ae2889b3cb26e8934c47f62..ead04ed0f2108aac23d8a899bf053ad73baf5876 100644 (file)
@@ -219,7 +219,7 @@ ctdb_control_reload_nodes_file(struct ctdb_context *ctdb, uint32_t opcode)
  */
 struct pulldb_data {
        struct ctdb_context *ctdb;
-       struct ctdb_control_pulldb_reply *pulldata;
+       struct ctdb_marshall_buffer *pulldata;
        uint32_t len;
        bool failed;
 };
index 2bc24dd74963b9dd0d7fdbd7581752415927f9b4..2e29feaa2794319ffd0ddb8fb01443b6c4b90c92 100644 (file)
@@ -533,7 +533,7 @@ static int pull_one_remote_database(struct ctdb_context *ctdb, uint32_t srcnode,
 {
        int ret;
        TDB_DATA outdata;
-       struct ctdb_control_pulldb_reply *reply;
+       struct ctdb_marshall_buffer *reply;
        struct ctdb_rec_data *rec;
        int i;
        TALLOC_CTX *tmp_ctx = talloc_new(recdb);