From: Thomas Markwalder Date: Tue, 21 Dec 2021 18:24:54 +0000 (-0500) Subject: [#2183] Fixed another comment. X-Git-Tag: Kea-2.1.2~164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17deecdb54ca8697abf02ba384fa43007b06b855;p=thirdparty%2Fkea.git [#2183] Fixed another comment. --- diff --git a/src/lib/pgsql/pgsql_connection.h b/src/lib/pgsql/pgsql_connection.h index d5fab7b6bc..a3e082ccb6 100644 --- a/src/lib/pgsql/pgsql_connection.h +++ b/src/lib/pgsql/pgsql_connection.h @@ -455,9 +455,9 @@ public: /// @brief Reference counter for transactions. /// /// It precludes starting and committing nested transactions. PostgreSQL - /// logs but ignores BEGINs issued from within an ongoing transaction. - /// We do not want to start new transactions when one is already - /// in progress. + /// logs but ignores START TRANSACTIONs (or BEGINs) issued from within an + /// ongoing transaction. We do not want to start new transactions when one + /// is already in progress. int transaction_ref_count_; };