TMXR: Avoid assigning incoming connections to modem enabled lines which don't have DTR raised.
This commit is contained in:
parent
f71acb307d
commit
9de34d7f60
1 changed files with 2 additions and 1 deletions
|
@ -1018,7 +1018,8 @@ if (mp->master) {
|
|||
if ((lp->conn == FALSE) && /* is the line available? */
|
||||
(lp->destination == NULL) &&
|
||||
(lp->master == 0) &&
|
||||
(lp->ser_connect_pending == FALSE))
|
||||
(lp->ser_connect_pending == FALSE) &&
|
||||
(lp->modem_control ? ((lp->modembits & TMXR_MDM_DTR) != 0) : TRUE))
|
||||
break; /* yes, so stop search */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue