Blame SOURCES/efax-0.9-numlines.patch

047448
This patch fixes the '-l' option in efix 0.3 which is part of efax 0.9.
047448
Without this patch, lines on page 2 and subsequent are missing if the
047448
specified number of lines per page is lower than the default (66).
047448
<mschwendt@yahoo.com>
047448
047448
diff -Naur efax-0.9-orig/efix.c efax-0.9/efix.c
047448
--- efax-0.9-orig/efix.c	Tue Mar  2 07:02:47 1999
047448
+++ efax-0.9/efix.c	Fri Aug 25 00:34:18 2000
047448
@@ -297,6 +297,9 @@
047448
 
047448
   if ( ! err && ! done ) {
047448
 
047448
+    if ( pfont ) ifile.font = pfont ;
047448
+    if ( pglines ) ifile.pglines = pglines ;
047448
+
047448
     if ( nxtoptind < argc ) {
047448
       ifnames = argv + nxtoptind ;
047448
       if ( argv [ argc ] ) {
047448
@@ -307,9 +310,6 @@
047448
     } else {
047448
       err = msg ( "E3 missing input file name" ) ;
047448
     }
047448
-
047448
-    if ( pfont ) ifile.font = pfont ;
047448
-    if ( pglines ) ifile.pglines = pglines ;
047448
 
047448
     newIFILE ( &ovfile, ovfnames ) ;
047448