]> git.pld-linux.org Git - packages/hylafax.git/blob - hylafax-topmargin.patch
- one -q in setup is enough
[packages/hylafax.git] / hylafax-topmargin.patch
1 diff -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.079714 seconds and 3 git commands to generate.