proto-shell: set proto_task_killed for SIGTERM only
[project/netifd.git] / proto-shell.c
index 86dc9ce..f32a32f 100644 (file)
@@ -578,7 +578,8 @@ proto_shell_kill_command(struct proto_shell_state *state, struct blob_attr **tb)
                signal = SIGTERM;
 
        if (state->proto_task.uloop.pending) {
-               state->proto_task_killed = true;
+               if (signal == SIGTERM)
+                       state->proto_task_killed = true;
                kill(state->proto_task.uloop.pid, signal);
        }