updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / efax-enhanced / efax-0.9-numlines.patch
blob08364744738de2b3cf7e539227039c63536432da
1 This patch fixes the '-l' option in efix 0.3 which is part of efax 0.9.
2 Without this patch, lines on page 2 and subsequent are missing if the
3 specified number of lines per page is lower than the default (66).
4 <mschwendt@yahoo.com>
6 diff -Naur efax-0.9-orig/efix.c efax-0.9/efix.c
7 --- efax-0.9-orig/efix.c Tue Mar 2 07:02:47 1999
8 +++ efax-0.9/efix.c Fri Aug 25 00:34:18 2000
9 @@ -298,6 +298,9 @@
11 if ( ! err && ! done ) {
13 + if ( pfont ) ifile.font = pfont ;
14 + if ( pglines ) ifile.pglines = pglines ;
16 if ( nxtoptind < argc ) {
17 ifnames = argv + nxtoptind ;
18 if ( argv [ argc ] ) {
19 @@ -308,9 +311,6 @@
20 } else {
21 err = msg ( "E3 missing input file name" ) ;
24 - if ( pfont ) ifile.font = pfont ;
25 - if ( pglines ) ifile.pglines = pglines ;
27 newIFILE ( &ovfile, ovfnames ) ;