remove comment

Signed-off-by: zhouhao <zhouhao@cn.fujitsu.com>
This commit is contained in:
zhouhao 2017-03-07 14:58:03 +08:00
parent d87ec6945f
commit 90427c9345
3 changed files with 2 additions and 5 deletions

View File

@ -549,8 +549,7 @@ Operator Constants:
"getcwd",
"chmod"
],
"action": "SCMP_ACT_ERRNO",
"comment": "stop exploit x"
"action": "SCMP_ACT_ERRNO"
}
]
}

View File

@ -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"
}
]
},

View File

@ -549,5 +549,4 @@ type LinuxSyscall struct {
Names []string `json:"names"`
Action LinuxSeccompAction `json:"action"`
Args []LinuxSeccompArg `json:"args"`
Comment string `json:"comment"`
}