Changeset 132ab5d1 in mainline for uspace/app/bdsh/input.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/app/bdsh/input.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/input.c
r8bfb163 r132ab5d1 73 73 74 74 char *cmd[WORD_MAX]; 75 int rc = 0;75 int rc = EOK; 76 76 tokenizer_t tok; 77 77 unsigned int i, pipe_count, processed_pipes; … … 82 82 if (usr->line == NULL) { 83 83 free(tokens_buf); 84 return CL_EFAIL;84 return EINVAL; 85 85 } 86 86 … … 198 198 } 199 199 200 rc = run_command(cmd, usr, &new_iostate); 200 if (run_command(cmd, usr, &new_iostate) == 0) { 201 rc = EOK; 202 } else { 203 rc = EINVAL; 204 } 201 205 202 206 finit_with_files:
Note:
See TracChangeset
for help on using the changeset viewer.
