]> git.pld-linux.org Git - packages/busybox.git/blob - busybox-tee.patch
- update for 1.0.0pre2
[packages/busybox.git] / busybox-tee.patch
1 diff -urN busybox-1.00-pre2.org/coreutils/tee.c busybox-1.00-pre2/coreutils/tee.c
2 --- busybox-1.00-pre2.org/coreutils/tee.c       2003-08-02 23:31:11.000000000 +0200
3 +++ busybox-1.00-pre2/coreutils/tee.c   2003-08-02 23:32:33.000000000 +0200
4 @@ -89,6 +89,7 @@
5  #endif
6  
7  #else
8 +       setvbuf(stdout, NULL, _IONBF, 0);
9         while ((c = getchar()) != EOF) {
10                 for (p=files ; *p ; p++) {
11                         putc(c, *p);
This page took 0.075565 seconds and 3 git commands to generate.