aboutgitcodelistschat:MatrixIRC
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-02-16 11:09:21 +0100
committerAlice Frosi <afrosi@redhat.com>2023-02-16 11:09:21 +0100
commit5b3e2e345b035b72458258a1c959524c19dc70ef (patch)
tree50b0e3de4f8f06b37fead9b0f86b0e110f36b3dc
parent0d7a2755ee6842bf95c22a4d387efc1ea032f27a (diff)
downloadseitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar.gz
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar.bz2
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar.lz
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar.xz
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.tar.zst
seitan-5b3e2e345b035b72458258a1c959524c19dc70ef.zip
actions: fix initialization for a_action
-rw-r--r--actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions.c b/actions.c
index 8a584b5..9741699 100644
--- a/actions.c
+++ b/actions.c
@@ -205,7 +205,7 @@ int do_actions(struct action actions[], unsigned int n_actions, int pid,
case A_CONT:
resp.id = id;
- resp.flags |= SECCOMP_USER_NOTIF_FLAG_CONTINUE;
+ resp.flags = SECCOMP_USER_NOTIF_FLAG_CONTINUE;
resp.error = 0;
resp.val = 0;
if (send_target(&resp, notifyfd) == -1)