]> git.stg.codes - stg.git/blobdiff - projects/stargazer/main.cpp
Fix types
[stg.git] / projects / stargazer / main.cpp
index 8eacc9aca032aeb8e3bb458c32efde859db90621..9ae5db7d4458b372671971c450bd677b244c3d55 100644 (file)
@@ -452,9 +452,9 @@ int main(int argc, char * argv[])
 
 SETTINGS * settings = NULL;
 STORE * dataStore = NULL;
-TARIFFS * tariffs = NULL;
-ADMINS * admins = NULL;
-USERS * users = NULL;
+TARIFFS_IMPL * tariffs = NULL;
+ADMINS_IMPL * admins = NULL;
+USERS_IMPL * users = NULL;
 TRAFFCOUNTER * traffCnt = NULL;
 int msgID = -11;
 
@@ -552,7 +552,7 @@ WriteServLog("Storage plugin: %s. Loading successfull.", dataStore->GetVersion()
 
 tariffs = new TARIFFS_IMPL(dataStore);
 admins = new ADMINS_IMPL(dataStore);
-users = new USERS_IMPL(settings, dataStore, tariffs, *admins->GetSysAdmin());
+users = new USERS_IMPL(settings, dataStore, tariffs, admins->GetSysAdmin());
 traffCnt = new TRAFFCOUNTER(users, tariffs, settings->GetRulesFileName());
 traffCnt->SetMonitorDir(settings->GetMonitorDir());