Commit f3c61f2c authored by claes's avatar claes

Privilege RtEvents added

parent 8700f102
......@@ -982,6 +982,7 @@ void GeUser::priv_to_string( unsigned int priv, char *str, int size)
buff[0] = 0;
if ( priv & pwr_mPrv_RtRead) strcat(buff, "RtRead ");
if ( priv & pwr_mPrv_RtWrite) strcat(buff, "RtWrite ");
if ( priv & pwr_mPrv_RtEvents) strcat(buff, "RtEvents ");
if ( priv & pwr_mPrv_System) strcat(buff, "System ");
if ( priv & pwr_mPrv_Maintenance) strcat(buff, "Maintenance ");
if ( priv & pwr_mPrv_Process) strcat(buff, "Process ");
......@@ -1011,6 +1012,7 @@ void GeUser::rt_priv_to_string( unsigned int priv, char *str, int size)
buff[0] = 0;
if ( priv & pwr_mPrv_RtRead) strcat(buff, "RtRead ");
if ( priv & pwr_mPrv_RtWrite) strcat(buff, "RtWrite ");
if ( priv & pwr_mPrv_RtEvents) strcat(buff, "RtEvents ");
if ( priv & pwr_mPrv_System) strcat(buff, "System ");
if ( priv & pwr_mPrv_Maintenance) strcat(buff, "Maintenance ");
if ( priv & pwr_mPrv_Process) strcat(buff, "Process ");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment