Browse code

Windows: NewDriver() re-baseline parms

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2015/05/17 03:38:19
Showing 1 changed files
... ...
@@ -10,7 +10,7 @@ import (
10 10
 	"github.com/docker/docker/pkg/sysinfo"
11 11
 )
12 12
 
13
-func NewDriver(name, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
13
+func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
14 14
 	switch name {
15 15
 	case "windows":
16 16
 		return windows.NewDriver(root, initPath)