]> git.pld-linux.org Git - packages/busybox.git/blame_incremental - busybox-tee.patch
- update for 1.0.0pre2
[packages/busybox.git] / busybox-tee.patch
... / ...
CommitLineData
1diff -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.02737 seconds and 4 git commands to generate.