diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-07 15:08:12 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-07 15:08:12 +0200 |
commit | 77cb6b99a436c20bb171e6cdad7b8b8b5ce3692c (patch) | |
tree | d00b5b460baa99be5547a2236790dbea31f90a5d /miscutils/i2c_tools.c | |
parent | 2f094ae82106e91cb210e79ddc2e5285377b549e (diff) | |
download | busybox-w32-77cb6b99a436c20bb171e6cdad7b8b8b5ce3692c.tar.gz busybox-w32-77cb6b99a436c20bb171e6cdad7b8b8b5ce3692c.tar.bz2 busybox-w32-77cb6b99a436c20bb171e6cdad7b8b8b5ce3692c.zip |
libbb: rename bb_ask -> bb_ask_noecho, bb_ask_confirmation -> bb_ask_y_confirmation
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/i2c_tools.c')
-rw-r--r-- | miscutils/i2c_tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c index 82f9842bd..8b201c0b1 100644 --- a/miscutils/i2c_tools.c +++ b/miscutils/i2c_tools.c | |||
@@ -422,7 +422,7 @@ static void confirm_or_abort(void) | |||
422 | { | 422 | { |
423 | fprintf(stderr, "Continue? [y/N] "); | 423 | fprintf(stderr, "Continue? [y/N] "); |
424 | fflush_all(); | 424 | fflush_all(); |
425 | if (!bb_ask_confirmation()) | 425 | if (!bb_ask_y_confirmation()) |
426 | bb_error_msg_and_die("aborting"); | 426 | bb_error_msg_and_die("aborting"); |
427 | } | 427 | } |
428 | 428 | ||