From 5ee2e5422a9107767790db243a7d5f462121e797 Mon Sep 17 00:00:00 2001 From: Yan Feng Date: Thu, 9 Apr 2015 11:46:09 -0400 Subject: [PATCH] Fix a typo in docker/daemon/execdriver/native/exec.go Signed-off-by: Yan Feng Upstream-commit: ab11d605556749e56e9dc5b4b071375765ad60bf Component: engine --- components/engine/daemon/execdriver/native/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/execdriver/native/exec.go b/components/engine/daemon/execdriver/native/exec.go index af6dcd2adb..2edd3313b1 100644 --- a/components/engine/daemon/execdriver/native/exec.go +++ b/components/engine/daemon/execdriver/native/exec.go @@ -14,7 +14,7 @@ import ( "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) { active := d.activeContainers[c.ID] if active == nil {