diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-07-15 22:56:11 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-07-15 22:56:11 -0400 |
commit | db2fa0e1059a2426a1afa4fc0c97d6f85f176641 (patch) | |
tree | bc3684b2e776af6ab55560aa0174c099c7f01196 /exec.c | |
parent | 7b1adcebf65d2131c4d324e73a3e3eace6b2ec28 (diff) | |
download | bfs-db2fa0e1059a2426a1afa4fc0c97d6f85f176641.tar.xz |
Handle yes/no prompts correctly according to the locale
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -342,14 +342,8 @@ static int bfs_exec_spawn(const struct bfs_exec *execbuf) { fprintf(stderr, "%s ", execbuf->argv[i]); } fprintf(stderr, "? "); - fflush(stderr); - int c = getchar(); - bool exec = c == 'y' || c == 'Y'; - while (c != '\n' && c != EOF) { - c = getchar(); - } - if (!exec) { + if (ynprompt() <= 0) { errno = 0; return -1; } |