os_trace: Fix inverted NULL check in trace_kill_exec()

CID: 1170539
This commit is contained in:
Attila Molnar 2014-09-18 01:58:14 +02:00
parent ae9d0666af
commit 4cf851713f
1 changed files with 1 additions and 1 deletions

View File

@ -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;