diff --git a/config-linux.md b/config-linux.md index 8f5f70a3e..da8a69235 100644 --- a/config-linux.md +++ b/config-linux.md @@ -549,8 +549,7 @@ Operator Constants: "getcwd", "chmod" ], - "action": "SCMP_ACT_ERRNO", - "comment": "stop exploit x" + "action": "SCMP_ACT_ERRNO" } ] } diff --git a/config.md b/config.md index 173ae823f..0d11cb8ec 100644 --- a/config.md +++ b/config.md @@ -766,8 +766,7 @@ Here is a full example `config.json` for reference. "getcwd", "chmod" ], - "action": "SCMP_ACT_ERRNO", - "comment": "stop exploit x" + "action": "SCMP_ACT_ERRNO" } ] }, diff --git a/specs-go/config.go b/specs-go/config.go index bd8e96a8a..13e5c625d 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -549,5 +549,4 @@ type LinuxSyscall struct { Names []string `json:"names"` Action LinuxSeccompAction `json:"action"` Args []LinuxSeccompArg `json:"args"` - Comment string `json:"comment"` }