summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/iomux.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/common/iomux.c b/common/iomux.c
index 15bf533885..5d027561bb 100644
--- a/common/iomux.c
+++ b/common/iomux.c
@@ -75,15 +75,8 @@ int iomux_doenv(const int console, const char *arg)
return 1;
}
- switch (console) {
- case stdin:
- io_flag = DEV_FLAGS_INPUT;
- break;
- case stdout:
- case stderr:
- io_flag = DEV_FLAGS_OUTPUT;
- break;
- default:
+ io_flag = stdio_file_to_flags(console);
+ if (io_flag < 0) {
free(start);
free(console_args);
free(cons_set);