From: Elena Mamontova Date: Thu, 10 Mar 2016 08:07:45 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~17 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/16060474339321263c1d5fa80368e858757caa5e Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class RADIUS in the radius.h file. --- diff --git a/projects/stargazer/plugins/other/radius/radius.h b/projects/stargazer/plugins/other/radius/radius.h index 8f5ba2a4..77dde0d5 100644 --- a/projects/stargazer/plugins/other/radius/radius.h +++ b/projects/stargazer/plugins/other/radius/radius.h @@ -98,7 +98,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return isRunning; } const std::string & GetStrError() const { return errorStr; }