Index: uspace/srv/hid/remcons/remcons.c
===================================================================
--- uspace/srv/hid/remcons/remcons.c	(revision 178d6a301f5927d1e0886464439ac360156f6795)
+++ uspace/srv/hid/remcons/remcons.c	(revision 03e0a244ecec466ab9fba898e60cdf6c324bf2ba)
@@ -58,5 +58,5 @@
 
 #define APP_GETTERM  "/app/getterm"
-
+#define APP_SHELL "/app/bdsh"
 
 /** Telnet commands to force character mode
@@ -225,8 +225,8 @@
 
 	task_id_t task;
-	rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, term, "/app/bdsh", NULL);
-	if (rc != EOK) {
-		telnet_user_error(user, "Spawning %s %s %s failed: %s.",
-		    APP_GETTERM, term, "/app/bdsh", str_error(rc));
+	rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, "-w", term, APP_SHELL, NULL);
+	if (rc != EOK) {
+		telnet_user_error(user, "Spawning `%s -w %s %s' failed: %s.",
+		    APP_GETTERM, term, APP_SHELL, str_error(rc));
 		fibril_mutex_lock(&user->guard);
 		user->task_finished = true;
