summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
authorsimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-01 22:38:40 +0000
committersimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-01 22:38:40 +0000
commite44f56a8d485d6e5292a122e8596fae79ea7230e (patch)
tree8906d76f50040296699bb3a70d75ad6a79d93af8 /remoting/tools
parente5b7047ef0855f742c334fd8ceb3b8860136cf40 (diff)
downloadchromium_src-e44f56a8d485d6e5292a122e8596fae79ea7230e.zip
chromium_src-e44f56a8d485d6e5292a122e8596fae79ea7230e.tar.gz
chromium_src-e44f56a8d485d6e5292a122e8596fae79ea7230e.tar.bz2
[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
Diffstat (limited to 'remoting/tools')
-rwxr-xr-xremoting/tools/me2me_virtual_host.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py
index 73c34fd..6b4095f 100755
--- a/remoting/tools/me2me_virtual_host.py
+++ b/remoting/tools/me2me_virtual_host.py
@@ -383,9 +383,9 @@ class Desktop:
def launch_host(self, host):
# Start remoting host
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:
- 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)
logging.info(args)
if not self.host_proc.pid: