Chromium Code Reviews| Index: remoting/tools/me2me_virtual_host.py |
| diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py |
| index 41115c56fca5428d3d0d71e2bee04b2e09bb4209..c995cf977225376399c27bb8950a6a9e15055a72 100755 |
| --- a/remoting/tools/me2me_virtual_host.py |
| +++ b/remoting/tools/me2me_virtual_host.py |
| @@ -287,7 +287,9 @@ class Desktop: |
| # Create clean environment for new session, so it is cleanly separated from |
| # the user's console X session. |
| - self.child_env = {"DISPLAY": ":%d" % display} |
| + self.child_env = { |
| + "DISPLAY": ":%d" % display, |
| + "REMOTING_ME2ME": "y" } |
|
Jamie
2012/02/10 23:35:07
Nit: Wouldn't "1" be a better value to set it to?
Lambros
2012/02/11 01:22:08
Done.
|
| for key in [ |
| "HOME", |
| "LOGNAME", |