import local busybox-power tree (1.18.5power2)
[busybox-power] / debian / patches / 06ls.patch
1 Flush all open files after showing files
2 By Yauheni Kaliuta <yauheni.kaliuta@nokia.com>
3
4 Ported to BusyBox 1.18.4 by Dennis Groenen <dennis_groenen@hotmail.com> - 2011-04-29  
5 ---
6
7 --- a/coreutils/ls.c
8 +++ b/coreutils/ls.c
9 @@ -784,6 +784,7 @@ static void showfiles(struct dnode **dn,
10                         }
11                 }
12                 putchar('\n');
13 +               fflush(NULL);
14                 column = 0;
15         }
16  }