update busybox-power against BusyBox 1.21 release
[busybox-power] / debian / patches / 06ls.patch
1 Flush all open files after showing files
2 Original patch by Yauheni Kaliuta <yauheni.kaliuta@nokia.com>
3
4 --- a/coreutils/ls.c
5 +++ b/coreutils/ls.c
6 @@ -701,6 +701,7 @@ static void display_files(struct dnode *
7                         }
8                 }
9                 putchar('\n');
10 +               fflush(NULL);
11                 column = 0;
12         }
13  }