Skip to content

Commit

Permalink
Merge pull request #244 from igittigitt/master
Browse files Browse the repository at this point in the history
Bugfix for issue #239 (setting baudrate via NVT)
  • Loading branch information
tve committed Jan 12, 2017
2 parents 963ffbb + 5d27848 commit b17ac31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serial/serbridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ telnetUnwrap(serbridgeConnData *conn, uint8_t *inBuf, int len)
case SetControl: state = TN_setControl; break;
case SetDataSize: state = TN_setDataSize; break;
case SetParity: state = TN_setParity; break;
case SetBaud: state = TN_setBaud; tn_baudCnt = 0; break;
case SetBaud: state = TN_setBaud; tn_baudCnt = 0; tn_baud = 0; break;
default: state = TN_end; break;
}
break;
Expand Down

0 comments on commit b17ac31

Please sign in to comment.