From: Thomas Markwalder Date: Tue, 21 Dec 2021 18:27:02 +0000 (-0500) Subject: [#2183] Fixed white spaces X-Git-Tag: Kea-2.1.2~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb81b84dfa32b1955bac636cc214e4fb70bc2df5;p=thirdparty%2Fkea.git [#2183] Fixed white spaces --- diff --git a/src/lib/pgsql/pgsql_connection.h b/src/lib/pgsql/pgsql_connection.h index a3e082ccb6..3450e3f5ba 100644 --- a/src/lib/pgsql/pgsql_connection.h +++ b/src/lib/pgsql/pgsql_connection.h @@ -276,8 +276,8 @@ public: /// by calling @c commit() or rolled back by calling @c rollback(). /// /// PostgreSQL does not support nested transactions directly. Issuing a - /// START TRANSACTION while already in a transaction will cause a warning to - /// be emitted but otherwise does not alter the state of the current transaction. + /// START TRANSACTION while already in a transaction will cause a warning to + /// be emitted but otherwise does not alter the state of the current transaction. /// In other words, the transaction will still end upon the next COMMIT or /// ROLLBACK statement. /// @@ -455,8 +455,8 @@ public: /// @brief Reference counter for transactions. /// /// It precludes starting and committing nested transactions. PostgreSQL - /// logs but ignores START TRANSACTIONs (or BEGINs) issued from within an - /// ongoing transaction. We do not want to start new transactions when one + /// 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_; };