You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 232 of check_rc_pids.c: if (! (_kill0 == 1 && _gsid0 == 0 && _gpid0 == 0 && _gsid1 == 0) )
The prerequisite for this step is _gsid0 == _gsid1, so _gsid1 == 0 is redundant. And this problem is not important. There is another problem:
line 245: if (! (_kill1 == 1 && _gsid1 == 0 && _gpid0 == 0 && _gsid1 == 0) ) _gsid1 == 0 appears twice. Is that a redundancy or it should be _gsid0 == 0 && _gsid1 ==0?
The text was updated successfully, but these errors were encountered:
ddpbsd
added a commit
to ddpbsd/ossec-hids
that referenced
this issue
Aug 30, 2018
line 232 of check_rc_pids.c:
if (! (_kill0 == 1 && _gsid0 == 0 && _gpid0 == 0 && _gsid1 == 0) )
The prerequisite for this step is
_gsid0 == _gsid1
, so_gsid1 == 0
is redundant. And this problem is not important. There is another problem:line 245:
if (! (_kill1 == 1 && _gsid1 == 0 && _gpid0 == 0 && _gsid1 == 0) )
_gsid1 == 0
appears twice. Is that a redundancy or it should be_gsid0 == 0 && _gsid1 ==0
?The text was updated successfully, but these errors were encountered: