summaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/exec.c b/exec.c
index 3178dbe..62eeaee 100644
--- a/exec.c
+++ b/exec.c
@@ -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;
}