Merge pull request #6 from ksherlock/patch-1

Logical and should be bitwise and
This commit is contained in:
FozzTexx 2017-05-08 18:52:01 -07:00 committed by GitHub
commit 6cb72448a3

View File

@ -46,7 +46,7 @@ int dce_set_flow_control(modem_config *cfg, int opts)
LOG(LOG_ALL, "Setting RTSCTS flow control");
status |= CRTSCTS;
}
if ((opts && MDM_FC_XON) != 0) {
if ((opts & MDM_FC_XON) != 0) {
status |= (IXON | IXOFF);
LOG(LOG_ALL, "Setting XON/XOFF flow control");
}