]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2183] Fixed white spaces
authorThomas Markwalder <tmark@isc.org>
Tue, 21 Dec 2021 18:27:02 +0000 (13:27 -0500)
committerThomas Markwalder <tmark@isc.org>
Tue, 21 Dec 2021 18:30:14 +0000 (13:30 -0500)
src/lib/pgsql/pgsql_connection.h

index a3e082ccb64e82fbcfbe3f832a3c482c143113f9..3450e3f5ba8b569e8bdda77ce71154ef5401832b 100644 (file)
@@ -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_;
 };