mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a3155743ad
Previously building with seccomp disabled would cause build failures because of a mismatch in the type signatures of DefaultProfile(). Signed-off-by: Aleksa Sarai <asarai@suse.de>
13 lines
261 B
Go
13 lines
261 B
Go
// +build linux,!seccomp
|
|
|
|
package seccomp
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// DefaultProfile returns a nil pointer on unsupported systems.
|
|
func DefaultProfile() *types.Seccomp {
|
|
return nil
|
|
}
|