diff options
-rw-r--r-- | source3/lib/dbwrap_ctdb.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index 07dde1e408..4dd9465c5f 100644 --- a/source3/lib/dbwrap_ctdb.c +++ b/source3/lib/dbwrap_ctdb.c @@ -26,9 +26,11 @@ struct db_ctdb_transaction_handle { struct db_ctdb_ctx *ctx; bool in_replay; - /* we store the reads and writes done under a transaction one - list stores both reads and writes, the other just writes - */ + /* + * we store the reads and writes done under a transaction: + * - one list stores both reads and writes (m_all), + * - the other just writes (m_write) + */ struct ctdb_marshall_buffer *m_all; struct ctdb_marshall_buffer *m_write; uint32_t nesting; |