Re: patch: Support long lines in Plan B

2014-12-07 Thread Tobias Stoeckmann
Anyone? On Sat, Nov 29, 2014 at 05:40:31PM +0100, Tobias Stoeckmann wrote: > Hi, > > this diff doesn't just fix the "division by zero" for input files with > lines longer than 1023 chars in Plan B mode, it actually removes this > line limit! > > Before: > > $ dd if=/dev/zero bs=1 count=1024 | t

patch: Support long lines in Plan B

2014-11-29 Thread Tobias Stoeckmann
Hi, this diff doesn't just fix the "division by zero" for input files with lines longer than 1023 chars in Plan B mode, it actually removes this line limit! Before: $ dd if=/dev/zero bs=1 count=1024 | tr '\0' a > a $ dd if=/dev/zero bs=1 count=1024 | tr '\0' b > b $ diff -u a b > a.diff $ patch