Changeset 932c640 in mainline
- Timestamp:
- 2021-08-08T13:17:18Z (3 years ago)
- Children:
- 5f9a52e
- Parents:
- 21b0013
- git-author:
- Manuele Conti <manuele.conti@…> (2021-08-08 13:17:05)
- git-committer:
- Manuele Conti <manuele.conti@…> (2021-08-08 13:17:18)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/input.c
r21b0013 r932c640 56 56 #include "tok.h" 57 57 58 #define MAX_PIPES 10U 59 58 60 extern volatile unsigned int cli_quit; 59 61 … … 92 94 tokenizer_t tok; 93 95 unsigned int i, pipe_count; 94 unsigned int pipe_pos[ 2];96 unsigned int pipe_pos[MAX_PIPES]; 95 97 char *redir_from = NULL; 96 98 char *redir_to = NULL; … … 153 155 break; 154 156 } 155 157 if (pipe_count > MAX_PIPES) { 158 rc = ENOTSUP; 159 goto finit; 160 } 156 161 } 157 162
Note:
See TracChangeset
for help on using the changeset viewer.