1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-26 09:57:23 +03:00

M #-: Fix no MySQL compilation

This commit is contained in:
Ruben S. Montero 2019-11-26 11:25:16 +01:00
parent fd2766970d
commit 23570ce0ef
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -163,13 +163,13 @@ class MySqlDB : public SqlDB
{
public:
MySqlDB(
string server,
int port,
string user,
string password,
string database,
int connections)
MySqlDB(const string& _server,
int _port,
const string& _user,
const string& _password,
const string& _database,
const string& _encoding,
int _connections)
{
throw runtime_error("Aborting oned, MySQL support not compiled!");
};