Changelog for HylaFAX 4.2.2
+* fix error in not employing Class1SwitchingCmd before sending
+ prologue frames (15 Jun 2005)
* adjust configure for AIX 5 (14 Jun 2005)
* handle CRP sent as PPS (8 Jun 2005)
* fix segfault when resetting a received TIFF page (8 Jun 2005)
*/
bool frameSent;
if (useV34) frameSent = true;
- else frameSent = (atCmd(thCmd, AT_NOTHING) && atResponse(rbuf, 7550) == AT_CONNECT);
+ else {
+ if (!atCmd(conf.class1SwitchingCmd, AT_OK)) {
+ protoTrace("Failure to receive silence.");
+ return (false);
+ }
+ frameSent = (atCmd(thCmd, AT_NOTHING) && atResponse(rbuf, 7550) == AT_CONNECT);
+ }
if (!frameSent)
return (false);
if (pwd != fxStr::null) {