Merge pull request #12223 from YanFeng-Adam/typo

Fix a typo in docker/daemon/execdriver/native/exec.go
This commit is contained in:
Brian Goff 2015-04-09 11:49:02 -04:00
commit 7dff1c15d2
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import (
"github.com/docker/libcontainer/utils" "github.com/docker/libcontainer/utils"
) )
// TODO(vishh): Add support for running in priviledged mode and running as a different user. // TODO(vishh): Add support for running in privileged mode and running as a different user.
func (d *driver) Exec(c *execdriver.Command, processConfig *execdriver.ProcessConfig, pipes *execdriver.Pipes, startCallback execdriver.StartCallback) (int, error) { func (d *driver) Exec(c *execdriver.Command, processConfig *execdriver.ProcessConfig, pipes *execdriver.Pipes, startCallback execdriver.StartCallback) (int, error) {
active := d.activeContainers[c.ID] active := d.activeContainers[c.ID]
if active == nil { if active == nil {