dd: fix status=none. Closes 10066

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_28_stable
Denys Vlasenko 2017-07-14 13:44:30 +02:00
parent 9fda609a60
commit d5b98e2ef4
1 changed files with 3 additions and 4 deletions

View File

@ -133,9 +133,8 @@ enum {
/* end of input flags */ /* end of input flags */
FLAG_TWOBUFS = (1 << 6) * ENABLE_FEATURE_DD_IBS_OBS, FLAG_TWOBUFS = (1 << 6) * ENABLE_FEATURE_DD_IBS_OBS,
FLAG_COUNT = 1 << 7, FLAG_COUNT = 1 << 7,
FLAG_STATUS = 1 << 8, FLAG_STATUS_NONE = 1 << 8,
FLAG_STATUS_NONE = 1 << 9, FLAG_STATUS_NOXFER = 1 << 9,
FLAG_STATUS_NOXFER = 1 << 10,
}; };
static void dd_output_status(int UNUSED_PARAM cur_signal) static void dd_output_status(int UNUSED_PARAM cur_signal)
@ -396,7 +395,7 @@ int dd_main(int argc UNUSED_PARAM, char **argv)
n = index_in_strings(status_words, val); n = index_in_strings(status_words, val);
if (n < 0) if (n < 0)
bb_error_msg_and_die(bb_msg_invalid_arg_to, val, "status"); bb_error_msg_and_die(bb_msg_invalid_arg_to, val, "status");
G.flags |= FLAG_STATUS << n; G.flags |= FLAG_STATUS_NONE << n;
/*continue;*/ /*continue;*/
} }
#endif #endif