From 90427c93457e9e81a77966bf8d5b324e7d978c8b Mon Sep 17 00:00:00 2001 From: zhouhao Date: Tue, 7 Mar 2017 14:58:03 +0800 Subject: [PATCH] remove comment Signed-off-by: zhouhao --- config-linux.md | 3 +-- config.md | 3 +-- specs-go/config.go | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/config-linux.md b/config-linux.md index 8f5f70a3..da8a6923 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 92cad0ba..f54a597b 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 bd8e96a8..13e5c625 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"` }