Fix NewProxyServer

Different OSes need different args.  This is not a great fix, but better
than adding an arg to Windows which doesn't need it.
This commit is contained in:
Tim Hockin
2017-11-22 14:17:10 -08:00
parent c45820f0c8
commit 79778288de
4 changed files with 18 additions and 4 deletions

View File

@@ -218,7 +218,7 @@ func (o *Options) Run() error {
return o.writeConfigFile()
}
proxyServer, err := NewProxyServer(o.config, o.CleanupAndExit, o.CleanupIPVS, o.scheme, o.master)
proxyServer, err := NewProxyServer(o)
if err != nil {
return err
}