diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-20 13:28:22 +0000 |
commit | e1a0d486e4804eae098571f1a6788394c2ee51ae (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /shell | |
parent | dd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff) | |
download | busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.bz2 busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip |
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 4d78b47a7..2013a9d2b 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -399,7 +399,7 @@ static int set_local_var(const char *s, int flg_export); | |||
399 | /* Table of built-in functions. They can be forked or not, depending on | 399 | /* Table of built-in functions. They can be forked or not, depending on |
400 | * context: within pipes, they fork. As simple commands, they do not. | 400 | * context: within pipes, they fork. As simple commands, they do not. |
401 | * When used in non-forking context, they can change global variables | 401 | * When used in non-forking context, they can change global variables |
402 | * in the parent shell process. If forked, of course they can not. | 402 | * in the parent shell process. If forked, of course they cannot. |
403 | * For example, 'unset foo | whatever' will parse and run, but foo will | 403 | * For example, 'unset foo | whatever' will parse and run, but foo will |
404 | * still be set at the end. */ | 404 | * still be set at the end. */ |
405 | static const struct built_in_command bltins[] = { | 405 | static const struct built_in_command bltins[] = { |