c675b39daef8c246b201e2bed9e5e446156e64cf
[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.19 by Dennis Groenen <tj.groenen@gmail.com> - 2011-08-19
5 ---
6
7 --- a/coreutils/ls.c
8 +++ b/coreutils/ls.c
9 @@ -701,6 +701,7 @@ static void display_files(struct dnode *
10                         }
11                 }
12                 putchar('\n');
13 +               fflush(NULL);
14                 column = 0;
15         }
16  }