summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 21:46:25 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 21:46:25 +0000
commit1591bbce0bc9966372e17e6dcd866ed6ebf308db (patch)
treeb3bb99fd48658b160337ec41f7681bfff910818a /remoting
parentc9d8113703584a262972858475a560c78733a7dd (diff)
downloadchromium_src-1591bbce0bc9966372e17e6dcd866ed6ebf308db.zip
chromium_src-1591bbce0bc9966372e17e6dcd866ed6ebf308db.tar.gz
chromium_src-1591bbce0bc9966372e17e6dcd866ed6ebf308db.tar.bz2
Change runclient so that it automatically uppercases IDs so I don't have to do it myself.
BUG=none TEST=none Review URL: http://codereview.chromium.org/2875011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rwxr-xr-xremoting/tools/runclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/tools/runclient.py b/remoting/tools/runclient.py
index 000b70e..17ba8da 100755
--- a/remoting/tools/runclient.py
+++ b/remoting/tools/runclient.py
@@ -37,7 +37,7 @@ authtoken = authinfo[1].rstrip()
# client attempting to connect.
print 'Host JID:', username + '/chromoting',
hostjid_suffix = raw_input()
-hostjid = username + '/chromoting' + hostjid_suffix
+hostjid = username + '/chromoting' + hostjid_suffix.upper()
command = []
command.append(client_path)