X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=config%2Fconf.c;h=ba416355ac2e61118e01eb072f4653f99b28574f;hp=06ddb0514f141e1a551dab50c4b8744386de5334;hb=06d54e73fd0c3f59f892c2ba2605f0e8dcb8995f;hpb=155c0b0aac714c34f336050db7d3c1a708dad1e3 diff --git a/config/conf.c b/config/conf.c index 06ddb05..ba41635 100644 --- a/config/conf.c +++ b/config/conf.c @@ -38,7 +38,6 @@ static enum input_mode input_mode = oldaskconfig; static int indent = 1; static int tty_stdio; -static int valid_stdin = 1; static int conf_cnt; static char line[PATH_MAX]; static struct menu *rootEntry; @@ -70,16 +69,6 @@ static void strip(char *str) *p-- = 0; } -static void check_stdin(void) -{ - if (!valid_stdin) { - printf(_("aborted!\n\n")); - printf(_("Console input/output is redirected. ")); - printf(_("Run 'make config' to update configuration.\n\n")); - exit(1); - } -} - /* Helper function to facilitate fgets() by Jean Sacren. */ static void xfgets(char *str, int size, FILE *in) { @@ -110,7 +99,6 @@ static int conf_askvalue(struct symbol *sym, const char *def) printf("%s\n", def); return 0; } - check_stdin(); /* fall through */ case oldaskconfig: fflush(stdout); @@ -196,9 +184,7 @@ static int conf_sym(struct menu *menu) printf("/m"); if (oldval != yes && sym_tristate_within_range(sym, yes)) printf("/y"); - if (menu_has_help(menu)) - printf("/?"); - printf("] "); + printf("/?] "); if (!conf_askvalue(sym, sym_get_string_value(sym))) return 0; strip(line); @@ -300,10 +286,7 @@ static int conf_choice(struct menu *menu) printf("[1]: 1\n"); goto conf_childs; } - printf("[1-%d", cnt); - if (menu_has_help(menu)) - printf("?"); - printf("]: "); + printf("[1-%d?]: ", cnt); switch (input_mode) { case oldconfig: if (!is_new) { @@ -311,7 +294,6 @@ static int conf_choice(struct menu *menu) printf("%d\n", cnt); break; } - check_stdin(); /* fall through */ case oldaskconfig: fflush(stdout); @@ -611,8 +593,6 @@ int main(int ac, char **av) break; } - valid_stdin = tty_stdio; - switch (input_mode) { case allnoconfig: conf_set_all_new_symbols(def_no);