[Chromoting] Fix command line flags for virtual Me2Me.

Review URL: https://chromiumcodereview.appspot.com/10826109

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149520 0039d316-1c4b-4281-b951-d872f2087c98
parent e5b7047e
...@@ -383,9 +383,9 @@ class Desktop: ...@@ -383,9 +383,9 @@ class Desktop:
def launch_host(self, host): def launch_host(self, host):
# Start remoting host # Start remoting host
args = [locate_executable(REMOTING_COMMAND), args = [locate_executable(REMOTING_COMMAND),
"--host_config=%s" % (host.config_file)] "--host-config=%s" % (host.config_file)]
if host.auth.config_file != host.config_file: if host.auth.config_file != host.config_file:
args.append("--auth_config=%s" % (host.auth.config_file)) args.append("--auth-config=%s" % (host.auth.config_file))
self.host_proc = subprocess.Popen(args, env=self.child_env) self.host_proc = subprocess.Popen(args, env=self.child_env)
logging.info(args) logging.info(args)
if not self.host_proc.pid: if not self.host_proc.pid:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment