]> git.pld-linux.org Git - packages/hylafax.git/blame - hylafax-topmargin.patch
- Release: 0.3
[packages/hylafax.git] / hylafax-topmargin.patch
CommitLineData
ec4247b5
TO
1diff -Nru hylafax.orig/faxd/faxQueueApp.c++ hylafax/faxd/faxQueueApp.c++
2--- hylafax.orig/faxd/faxQueueApp.c++ Thu Apr 26 09:50:44 2001
3+++ hylafax/faxd/faxQueueApp.c++ Fri May 18 15:57:48 2001
4@@ -841,6 +841,12 @@
5 u_int topMargin = 1*98; // 1" at 98 lpi
6 if (params.vr == VR_FINE) // 196 lpi =>'s twice as many
7 topMargin *= 2;
8+
9+ /*
10+ * Skip at least 200 rows. ZYXELs like it.
11+ */
12+ if( topMargin < 220 ) topMargin = 220;
13+
14 do {
15 (void) decodeRow(NULL, rowpixels);
16 } while (--topMargin);
This page took 0.098286 seconds and 4 git commands to generate.