summaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-31 03:33:50 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-31 03:33:50 +0000
commit15c0b725849875c718b168a26e13872e163cde4c (patch)
tree687a5425953ae362ef285c6c671f09a05d3fa3c0 /coreutils
parentccdc13d306c0a8d2735488bf8e46503f7e567767 (diff)
downloadbusybox-w32-1_13_2.tar.gz
busybox-w32-1_13_2.tar.bz2
busybox-w32-1_13_2.zip
Apply post 1.13.1 patches, bump to 1.13.21_13_2
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/printf.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c
index 76524f706..b0a48cda4 100644
--- a/coreutils/printf.c
+++ b/coreutils/printf.c
@@ -359,8 +359,15 @@ int printf_main(int argc UNUSED_PARAM, char **argv)
359 * We will mimic coreutils. */ 359 * We will mimic coreutils. */
360 if (argv[1] && argv[1][0] == '-' && argv[1][1] == '-' && !argv[1][2]) 360 if (argv[1] && argv[1][0] == '-' && argv[1][1] == '-' && !argv[1][2])
361 argv++; 361 argv++;
362 if (!argv[1]) 362 if (!argv[1]) {
363 if (ENABLE_ASH_BUILTIN_PRINTF
364 && applet_name[0] != 'p'
365 ) {
366 bb_error_msg("usage: printf FORMAT [ARGUMENT...]");
367 return 2; /* bash compat */
368 }
363 bb_show_usage(); 369 bb_show_usage();
370 }
364 371
365 format = argv[1]; 372 format = argv[1];
366 argv2 = argv + 2; 373 argv2 = argv + 2;