os_trace: Fix inverted NULL check in trace_kill_exec()
CID: 1170539
This commit is contained in:
parent
ae9d0666af
commit
4cf851713f
|
@ -579,7 +579,7 @@ static void trace_kill_exec(user_t *u, trace_action_t *act)
|
|||
return;
|
||||
if (u->myuser && is_soper(u->myuser))
|
||||
return;
|
||||
if ((svs = service_find("operserv")) != NULL)
|
||||
if ((svs = service_find("operserv")) == NULL)
|
||||
return;
|
||||
|
||||
act->matched = true;
|
||||
|
|
Loading…
Reference in New Issue