[haiku-commits] haiku: hrev49013 - src/apps/remotedesktop

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 8 Apr 2015 19:06:41 +0200 (CEST)

hrev49013 adds 1 changeset to branch 'master'
old head: 47c5baac63e74b67d315a86f2bfe3eb4ba733530
new head: f49c4c0911682c997596f1f0eae7e4f6dcc3766c
overview:
http://cgit.haiku-os.org/haiku/log/?qt=range&q=f49c4c091168+%5E47c5baac63e7

----------------------------------------------------------------------------

f49c4c091168: RemoteDesktop: fix -c handling.

hrev43649 was not completely merged during the PM merge, add the missing
line.

Fixes #11955.

[ Adrien Destugues <pulkomandy@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision: hrev49013
Commit: f49c4c0911682c997596f1f0eae7e4f6dcc3766c
URL: http://cgit.haiku-os.org/haiku/commit/?id=f49c4c091168
Author: Adrien Destugues <pulkomandy@xxxxxxxxx>
Date: Wed Apr 8 16:40:05 2015 UTC

Ticket: https://dev.haiku-os.org/ticket/11955

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/remotedesktop/RemoteDesktop.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/apps/remotedesktop/RemoteDesktop.cpp
b/src/apps/remotedesktop/RemoteDesktop.cpp
index 8fbec99..2e48f26 100644
--- a/src/apps/remotedesktop/RemoteDesktop.cpp
+++ b/src/apps/remotedesktop/RemoteDesktop.cpp
@@ -106,7 +106,7 @@ main(int argc, char *argv[])
char shellCommand[4096];
snprintf(shellCommand, sizeof(shellCommand),
"echo connected; export TARGET_SCREEN=localhost:%"
B_PRIu32
- "; %s\n", listenPort, terminalPath.Path());
+ "; %s\n", listenPort, command);

int pipes[4];
if (pipe(&pipes[0]) != 0 || pipe(&pipes[2]) != 0) {


Other related posts:

  • » [haiku-commits] haiku: hrev49013 - src/apps/remotedesktop - pulkomandy