diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-01 18:18:04 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-01 18:18:04 +0000 |
commit | a1d5274ff00fa15246a788150635a3f576899eae (patch) | |
tree | 9082c2b4d0091f108432b2a41b7ee33152c9240f /shell | |
parent | b1935f1c19c271354e49e37d24903d47ba5a9a85 (diff) | |
download | busybox-w32-a1d5274ff00fa15246a788150635a3f576899eae.tar.gz busybox-w32-a1d5274ff00fa15246a788150635a3f576899eae.tar.bz2 busybox-w32-a1d5274ff00fa15246a788150635a3f576899eae.zip |
stty: fix width of a field for ppc32
sort: fix -u to match coreutils 6.3
msh: compile fix (my fault)
git-svn-id: svn://busybox.net/trunk/busybox@17124 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/msh.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c index e43cb1875..c88308f8f 100644 --- a/shell/msh.c +++ b/shell/msh.c | |||
@@ -4860,9 +4860,12 @@ static int qstrchar(struct ioarg *ap) | |||
4860 | { | 4860 | { |
4861 | int c; | 4861 | int c; |
4862 | 4862 | ||
4863 | if (ap->aword == NULL) || (c = *ap->aword++) == 0) | 4863 | if (ap->aword == NULL) |
4864 | return 0; | 4864 | return 0; |
4865 | return c | QUOTE; | 4865 | c = *ap->aword++; |
4866 | if (c) | ||
4867 | c |= QUOTE; | ||
4868 | return c; | ||
4866 | } | 4869 | } |
4867 | 4870 | ||
4868 | /* | 4871 | /* |