1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Because not all OSes will support the same set of serial port

options, here's a slight change to the API of ser_setup_config_box()
to make it filter its parity and flow control options using
platform-supplied bit masks.

[originally from svn r6820]
This commit is contained in:
Simon Tatham
2006-08-28 13:08:15 +00:00
parent 0ceeaf2b96
commit ae83801b28
2 changed files with 28 additions and 16 deletions

View File

@ -375,5 +375,5 @@ void win_setup_config_box(struct controlbox *b, HWND *hwndp, int has_help,
/*
* Serial back end is available on Windows.
*/
ser_setup_config_box(b, midsession);
ser_setup_config_box(b, midsession, 0x1F, 0x0F);
}