Merge pull request #43775 from bpascard/43774-seccomp-clock-settime64

This commit is contained in:
Brian Goff 2022-07-07 07:37:43 -07:00 committed by GitHub
commit c3eecf0aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -743,7 +743,8 @@
"names": [ "names": [
"settimeofday", "settimeofday",
"stime", "stime",
"clock_settime" "clock_settime",
"clock_settime64"
], ],
"action": "SCMP_ACT_ALLOW", "action": "SCMP_ACT_ALLOW",
"includes": { "includes": {

View File

@ -731,6 +731,7 @@ func DefaultProfile() *Seccomp {
"settimeofday", "settimeofday",
"stime", "stime",
"clock_settime", "clock_settime",
"clock_settime64",
}, },
Action: specs.ActAllow, Action: specs.ActAllow,
}, },