diff options
author | Thomas Markwalder <tmark@isc.org> | 2016-08-25 19:37:46 +0200 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2016-08-25 19:37:46 +0200 |
commit | bb040d046aef63c7da840328876d1bebabde7a21 (patch) | |
tree | bcac3b1f13f976335e764ace0301cec3c5b2fa1a | |
parent | [master] Added ChangeLog entry for #4552. (diff) | |
download | kea-bb040d046aef63c7da840328876d1bebabde7a21.tar.xz kea-bb040d046aef63c7da840328876d1bebabde7a21.zip |
[master] Fixed doxygen errors introduced by 4294.
modified: src/lib/dhcpsrv/mysql_lease_mgr.cc
modified: src/lib/dhcpsrv/pgsql_lease_mgr.cc
-rw-r--r-- | src/lib/dhcpsrv/mysql_lease_mgr.cc | 4 | ||||
-rw-r--r-- | src/lib/dhcpsrv/pgsql_lease_mgr.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dhcpsrv/mysql_lease_mgr.cc b/src/lib/dhcpsrv/mysql_lease_mgr.cc index 344fb272fc..9fa1994e8d 100644 --- a/src/lib/dhcpsrv/mysql_lease_mgr.cc +++ b/src/lib/dhcpsrv/mysql_lease_mgr.cc @@ -1235,8 +1235,8 @@ public: /// @brief Constructor /// /// @param conn A open connection to the database housing the lease data - /// @brief statement_index Index of the query's prepared statement - /// @brief fetch_type Indicates if query supplies lease type + /// @param statement_index Index of the query's prepared statement + /// @param fetch_type Indicates if query supplies lease type MySqlLeaseStatsQuery(MySqlConnection& conn, const size_t statement_index, const bool fetch_type) : conn_(conn), statement_index_(statement_index), statement_(NULL), diff --git a/src/lib/dhcpsrv/pgsql_lease_mgr.cc b/src/lib/dhcpsrv/pgsql_lease_mgr.cc index 3ea7475484..84c005c330 100644 --- a/src/lib/dhcpsrv/pgsql_lease_mgr.cc +++ b/src/lib/dhcpsrv/pgsql_lease_mgr.cc @@ -705,7 +705,7 @@ public: /// /// @param conn A open connection to the database housing the lease data /// @param statement The lease data SQL prepared statement to execute - /// @param fetch_statement Indicates whether or not lease_type should be + /// @param fetch_type Indicates whether or not lease_type should be /// fetched from the result set PgSqlLeaseStatsQuery(PgSqlConnection& conn, PgSqlTaggedStatement& statement, const bool fetch_type) |