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

Feature #407: Fix for UserPool initialization bug

This commit is contained in:
Carlos Martín 2011-03-04 19:59:36 +01:00
parent de03c2859f
commit 58f3742612

View File

@ -51,7 +51,7 @@ UserPool::UserPool(SqlDB * db):PoolSQL(db,User::table)
set_callback(static_cast<Callbackable::Callback>(&UserPool::init_cb));
sql << "SELECT oid,user_name FROM " << User::table;
sql << "SELECT oid, name FROM " << User::table;
db->exec(sql, this);