summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-misc/dzen/files/dzen-0.9.5-off-by-one.patch')
-rw-r--r--x11-misc/dzen/files/dzen-0.9.5-off-by-one.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/x11-misc/dzen/files/dzen-0.9.5-off-by-one.patch b/x11-misc/dzen/files/dzen-0.9.5-off-by-one.patch
deleted file mode 100644
index 008fd6455014..000000000000
--- a/x11-misc/dzen/files/dzen-0.9.5-off-by-one.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/main.c
-+++ b/main.c
-@@ -109,7 +109,7 @@
- rem = NULL;
- }
- while(off < len) {
-- if(i > MAX_LINE_LEN) {
-+ if(i == MAX_LINE_LEN - 1) {
- outbuf[i] = '\0';
- return ++off;
- }