]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1073] minor changes
authorRazvan Becheriu <razvan@isc.org>
Fri, 10 Jan 2020 17:44:32 +0000 (19:44 +0200)
committerRazvan Becheriu <razvan@isc.org>
Mon, 27 Jan 2020 14:57:36 +0000 (16:57 +0200)
src/lib/dhcpsrv/mysql_host_data_source.cc

index 088f6a90e27df324c01fec46de3892f777189878..4d085aac58b7dfca91a821f6c0e2d62455243f47 100644 (file)
@@ -1918,7 +1918,7 @@ public:
     /// @brief Constructor
     ///
     /// @param parameters See MySqlHostMgr constructor.
-    MySqlHostContext(const db::DatabaseConnection::ParameterMap& parameters);
+    MySqlHostContext(const DatabaseConnection::ParameterMap& parameters);
 
     /// The exchange objects are used for transfer of data to/from the database.
     /// They are pointed-to objects as the contents may change in "const" calls,
@@ -1948,7 +1948,7 @@ public:
     boost::shared_ptr<MySqlOptionExchange> host_option_exchange_;
 
     /// @brief MySQL connection
-    db::MySqlConnection conn_;
+    MySqlConnection conn_;
 
     /// @brief Indicates if the database is opened in read only mode.
     bool is_readonly_;
@@ -2184,7 +2184,7 @@ public:
     void checkReadOnly(MySqlHostContextPtr& ctx) const;
 
     /// @brief The parameters
-    db::DatabaseConnection::ParameterMap parameters_;
+    DatabaseConnection::ParameterMap parameters_;
 
     /// @brief The pool of contexts
     MySqlHostContextPoolPtr pool_;