From: Michael Adam Date: Mon, 4 Aug 2008 15:07:20 +0000 (+0200) Subject: dbwrap ctdb: remove erroneously duplicated comment. X-Git-Tag: samba-3.3.0pre1~168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c939c55e5182258092faceefa58a7f328f18619e;p=thirdparty%2Fsamba.git dbwrap ctdb: remove erroneously duplicated comment. Michael --- diff --git a/source/lib/dbwrap_ctdb.c b/source/lib/dbwrap_ctdb.c index aa2f9d371ca..23750ebb5e0 100644 --- a/source/lib/dbwrap_ctdb.c +++ b/source/lib/dbwrap_ctdb.c @@ -81,7 +81,6 @@ static NTSTATUS db_ctdb_store_persistent(struct db_record *rec, TDB_DATA data, i status = ctdbd_start_persistent_update(messaging_ctdbd_connection(), crec->ctdb_ctx->db_id, rec->key, cdata); - /* now tell ctdbd to update this record on all other nodes */ if (NT_STATUS_IS_OK(status)) { ret = tdb_store(crec->ctdb_ctx->wtdb->tdb, rec->key, cdata, TDB_REPLACE); status = (ret == 0) ? NT_STATUS_OK : NT_STATUS_INTERNAL_DB_CORRUPTION;