summaryrefslogtreecommitdiff
path: root/daemon/exec_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/exec_windows.go')
-rw-r--r--daemon/exec_windows.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/exec_windows.go b/daemon/exec_windows.go
index 03246d91cd..d8754eb18d 100644
--- a/daemon/exec_windows.go
+++ b/daemon/exec_windows.go
@@ -3,10 +3,10 @@ package daemon
import (
"github.com/docker/docker/container"
"github.com/docker/docker/daemon/exec"
- "github.com/docker/docker/libcontainerd"
+ specs "github.com/opencontainers/runtime-spec/specs-go"
)
-func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error {
+func (daemon *Daemon) execSetPlatformOpt(c *container.Container, ec *exec.Config, p *specs.Process) error {
// Process arguments need to be escaped before sending to OCI.
if c.OS == "windows" {
p.Args = escapeArgs(p.Args)