aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-05-20 04:22:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-05-20 04:22:55 +0200
commit44c86ce5d7ee7c641a2c8c392f059e19050abd11 (patch)
tree1c6f9ada5e345ff408edfc78c2f59d8dff738e1d /shell
parentb131ccec9c917efd735a353cb0f2cb14862192f1 (diff)
downloadbusybox-44c86ce5d7ee7c641a2c8c392f059e19050abd11.tar.gz
hush: code shrink
text data bss dec hex filename 843121 453 6828 850402 cf9e2 busybox_old 843108 453 6828 850389 cf9d5 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index fcfbd06f3..df81eaae7 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -7949,7 +7949,7 @@ static int FAST_FUNC builtin_umask(char **argv)
* bash: umask: 'q': invalid symbolic mode operator
* bash: umask: 999: octal number out of range
*/
- bb_error_msg("umask: '%s' invalid mode", argv[0]);
+ bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
}
} else {
rc = 1;