stty: fix width of a field for ppc32

sort: fix -u to match coreutils 6.3
msh: compile fix (my fault)
This commit is contained in:
Denis Vlasenko
2007-01-01 18:18:04 +00:00
parent e27f15615f
commit b2abef3e54
3 changed files with 150 additions and 100 deletions

View File

@@ -4860,9 +4860,12 @@ static int qstrchar(struct ioarg *ap)
{
int c;
if (ap->aword == NULL) || (c = *ap->aword++) == 0)
if (ap->aword == NULL)
return 0;
return c | QUOTE;
c = *ap->aword++;
if (c)
c |= QUOTE;
return c;
}
/*