Logical and should be bitwise and

This commit is contained in:
ksherlock 2017-05-08 21:00:44 -04:00 committed by GitHub
parent 8812faf218
commit 874326935e

View File

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