aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/crontab.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-09-07 17:12:57 -0500
committerRob Landley <rob@landley.net>2015-09-07 17:12:57 -0500
commitb1353fb9185928249f273340c601244291e269fe (patch)
treee75f4ee65b3f88a1fd436b9605826c1df160f514 /toys/pending/crontab.c
parent960100aa9cb588a73125d43ec0b0a7152a95b43f (diff)
downloadtoybox-b1353fb9185928249f273340c601244291e269fe.tar.gz
Remove prompt argument from yesno(), caller can fprintf(stderr, "blah") itself.
This fixes the build break, the change to yesno() prototype accidentally got checked in last commit. (Oops, sorry.)
Diffstat (limited to 'toys/pending/crontab.c')
-rw-r--r--toys/pending/crontab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/crontab.c b/toys/pending/crontab.c
index 35f6d659..05c98f2b 100644
--- a/toys/pending/crontab.c
+++ b/toys/pending/crontab.c
@@ -317,9 +317,9 @@ RETRY:
}
printf("%s: installing new crontab\n", toys.which->name);
if (parse_crontab(tname)) {
- snprintf(toybuf, sizeof(toybuf), "errors in crontab file, can't install.\n"
+ fprintf(stderr, "errors in crontab file, can't install.\n"
"Do you want to retry the same edit? ");
- if (!yesno(toybuf, 0)) {
+ if (!yesno(0)) {
error_msg("edits left in '%s'", tname);
return;
}