Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/input.c

    rb7fd2a0 r193d280c  
    6565 * invokes the built-in entry point (a[0]) passing all arguments in a[] to
    6666 * the handler */
    67 errno_t process_input(cliuser_t *usr)
     67int process_input(cliuser_t *usr)
    6868{
    6969        token_t *tokens_buf = calloc(WORD_MAX, sizeof(token_t));
     
    7373       
    7474        char *cmd[WORD_MAX];
    75         errno_t rc = EOK;
     75        int rc = 0;
    7676        tokenizer_t tok;
    7777        unsigned int i, pipe_count, processed_pipes;
     
    8282        if (usr->line == NULL) {
    8383                free(tokens_buf);
    84                 return EINVAL;
     84                return CL_EFAIL;
    8585        }
    8686
     
    198198        }
    199199
    200         if (run_command(cmd, usr, &new_iostate) == 0) {
    201                 rc = EOK;
    202         } else {
    203                 rc = EINVAL;
    204         }
     200        rc = run_command(cmd, usr, &new_iostate);
    205201       
    206202finit_with_files:
     
    259255{
    260256        char *str;
    261         errno_t rc;
     257        int rc;
    262258       
    263259        tinput_set_prompt(tinput, usr->prompt);
Note: See TracChangeset for help on using the changeset viewer.