diff options
author | Michael Adam <obnox@samba.org> | 2009-10-22 14:37:51 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-11-03 01:02:35 +0100 |
commit | d5aa7584824749ae48ede791cf1c76c8e6ab7ad2 (patch) | |
tree | beb810c7936e68aaaf70505b4ddb190f3032b84a | |
parent | 494d8271d43c4bc44a57463e34ae8c35423e4443 (diff) | |
download | samba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.tar.gz samba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.tar.bz2 samba-d5aa7584824749ae48ede791cf1c76c8e6ab7ad2.zip |
s3:dbwrap_ctdb: reformat a comment slightly to enhance clearness.
Michael
-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; |