diff options
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 53a843ca0..6a5288da1 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -326,7 +326,7 @@ int dd_main(int argc UNUSED_PARAM, char **argv) | |||
326 | *arg = '\0'; | 326 | *arg = '\0'; |
327 | n = index_in_strings(conv_words, val); | 327 | n = index_in_strings(conv_words, val); |
328 | if (n < 0) | 328 | if (n < 0) |
329 | bb_error_msg_and_die(bb_msg_invalid_arg, val, "conv"); | 329 | bb_error_msg_and_die(bb_msg_invalid_arg_to, val, "conv"); |
330 | G.flags |= (1 << n); | 330 | G.flags |= (1 << n); |
331 | if (!arg) /* no ',' left, so this was the last specifier */ | 331 | if (!arg) /* no ',' left, so this was the last specifier */ |
332 | break; | 332 | break; |
@@ -368,7 +368,7 @@ int dd_main(int argc UNUSED_PARAM, char **argv) | |||
368 | int n; | 368 | int n; |
369 | n = index_in_strings(status_words, val); | 369 | n = index_in_strings(status_words, val); |
370 | if (n < 0) | 370 | if (n < 0) |
371 | bb_error_msg_and_die(bb_msg_invalid_arg, val, "status"); | 371 | bb_error_msg_and_die(bb_msg_invalid_arg_to, val, "status"); |
372 | G.flags |= FLAG_STATUS << n; | 372 | G.flags |= FLAG_STATUS << n; |
373 | /*continue;*/ | 373 | /*continue;*/ |
374 | } | 374 | } |