Changeset ce3efa0 in mainline for uspace/srv/hid/remcons/remcons.c
- Timestamp:
- 2014-08-12T16:49:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 593e023
- Parents:
- f6ab787
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/remcons/remcons.c
rf6ab787 rce3efa0 225 225 { 226 226 telnet_user_t *user = arg; 227 int rc; 228 227 229 228 char term[LOC_NAME_MAXLEN]; 230 229 snprintf(term, LOC_NAME_MAXLEN, "%s/%s", "/loc", user->service_name); 231 230 232 231 task_id_t task; 233 rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, "-w", term, APP_SHELL, NULL);232 int rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, "-w", term, APP_SHELL, NULL); 234 233 if (rc != EOK) { 235 234 telnet_user_error(user, "Spawning `%s -w %s %s' failed: %s.",
Note:
See TracChangeset
for help on using the changeset viewer.