| commit
82ece90254d352c6969f28a72130ca252bba3278
| Author: Lee Howard <faxguy@howardsilvan.com>
| Date: Sat Jun 23 16:14:38 2007 +0000
|
| Craig Haskins points out on hylafax-devel@hylafax.org that EOFB needs to
| take ModemSendFillOrder into consideration.
Andrea Gabellini
Nico Garcia
John Gilman
+ Craig Haskins Class 2 EOFB bit order fix
Kris Henderson
Wolfgang Henke
Sascha Herrmann
* faxq: redoce copius scheduler logging (7 Sep 2007)
* man pages: fix mulitple typos (17 Sep 2007)
* Disable MMR ond Digis (18 Sep 2007)
+* Class2: Fix EOFB bit order when usen LSB2MSB (18 Sep 2007)
/*
* correct broken Phase C (T.4/T.6) data if necessary
*/
- if (params.df <= DF_2DMMR)
+ if (params.df <= DF_2DMMR) {
lastByte = correctPhaseCData(dp, &totdata, fillorder, (conf.class2RTFCC ? params : newparams), rows);
+ lastByte = bitrev[lastByte];
+ }
beginTimedTransfer();
rc = putModemDLEData(dp, (u_int) totdata, bitrev, getDataTimeout());