Merge pull request #714 from q384566678/seccomp-commits

remove comment
This commit is contained in:
Michael Crosby 2017-03-10 09:07:37 -08:00 committed by GitHub
commit 6bfef10d91
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"`
}