1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #31478 from cyphar/seccomp-fix-unsupported-build

profiles: seccomp: fix !seccomp build
This commit is contained in:
Justin Cormack 2017-03-02 09:23:28 -08:00 committed by GitHub
commit 0b9fddb789

View file

@ -8,6 +8,6 @@ import (
)
// DefaultProfile returns a nil pointer on unsupported systems.
func DefaultProfile(rs *specs.Spec) *types.Seccomp {
func DefaultProfile() *types.Seccomp {
return nil
}