summaryrefslogtreecommitdiff
path: root/source3/lib/dbwrap_ctdb.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-10-22 14:37:51 +0200
committerMichael Adam <obnox@samba.org>2009-11-03 01:02:35 +0100
commitd5aa7584824749ae48ede791cf1c76c8e6ab7ad2 (patch)
treebeb810c7936e68aaaf70505b4ddb190f3032b84a /source3/lib/dbwrap_ctdb.c
parent494d8271d43c4bc44a57463e34ae8c35423e4443 (diff)
downloadsamba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.tar.gz
samba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.tar.bz2
samba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.zip
s3:dbwrap_ctdb: reformat a comment slightly to enhance clearness.
Michael
Diffstat (limited to 'source3/lib/dbwrap_ctdb.c')
-rw-r--r--source3/lib/dbwrap_ctdb.c8
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;