aboutsummaryrefslogtreecommitdiff
path: root/shell/msh_unused.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 02:24:24 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 02:24:24 +0100
commit6b9f1633537e2ff06eb1a0741e4598a294f40fcb (patch)
treea13f4f3558c2988bc95b5a59c9996da64a0bd570 /shell/msh_unused.c
parent17323a6245597f16321e6bf99536ae9bb89c79cf (diff)
downloadbusybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.gz
busybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.bz2
busybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.zip
*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/msh_unused.c')
-rw-r--r--shell/msh_unused.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/shell/msh_unused.c b/shell/msh_unused.c
index d4fe3db1b..54680226a 100644
--- a/shell/msh_unused.c
+++ b/shell/msh_unused.c
@@ -3873,9 +3873,10 @@ static char *blank(int f)
3873 scanequals = 0; 3873 scanequals = 0;
3874 for (;;) { 3874 for (;;) {
3875 c = subgetc('"', foundequals); 3875 c = subgetc('"', foundequals);
3876 if (c == 0 || 3876 if (c == 0
3877 f & (DOBLANK && any(c, ifs->value)) || 3877 || f & (DOBLANK && any(c, ifs->value))
3878 (!INSUB() && any(c, "\"'"))) { 3878 || (!INSUB() && any(c, "\"'"))
3879 ) {
3879 scanequals = 0; 3880 scanequals = 0;
3880 unget(c); 3881 unget(c);
3881 if (any(c, "\"'")) 3882 if (any(c, "\"'"))