summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.16.0-tail.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/busybox-1.16.0-tail.patch')
-rw-r--r--package/busybox/busybox-1.16.0-tail.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/busybox/busybox-1.16.0-tail.patch b/package/busybox/busybox-1.16.0-tail.patch
deleted file mode 100644
index 11832a874..000000000
--- a/package/busybox/busybox-1.16.0-tail.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -urpN busybox-1.16.0/coreutils/tail.c busybox-1.16.0-tail/coreutils/tail.c
---- busybox-1.16.0/coreutils/tail.c 2010-03-08 22:49:32.000000000 +0100
-+++ busybox-1.16.0-tail/coreutils/tail.c 2010-03-12 22:16:07.105943986 +0100
-@@ -241,7 +241,8 @@ int tail_main(int argc, char **argv)
- } while (nwrite);
- }
- }
-- xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
-+ if (nwrite > 0)
-+ xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite);
- } else if (count) {
- if (COUNT_BYTES) {
- taillen += nread;