]> git.pld-linux.org Git - packages/busybox.git/blob - busybox-tee.patch
- added syslogd and klogd
[packages/busybox.git] / busybox-tee.patch
1 --- tee.c.orig  Mon Oct 23 20:57:32 2000
2 +++ tee.c       Mon Oct 23 20:58:29 2000
3 @@ -51,7 +51,7 @@
4                         status = 1;
5                 }
6         }
7 -
8 +       setvbuf(stdout, NULL, _IONBF, 0);
9         while ((c = getchar()) != EOF)
10                 for (i = 0; i < nfiles; i++)
11                         putc(c, files[i]);
This page took 0.086462 seconds and 3 git commands to generate.