Differences From Artifact [aada5cd8a4]:
- File cmdline.c — part of check-in [37a083ba13] at 2011-07-15 13:21:30 on branch trunk — Missing free. (user: simon size: 16164)
To Artifact [21fc5dba38]:
- File cmdline.c — part of check-in [96a0aff613] at 2011-08-18 05:45:25 on branch trunk — Restore data-bits options for "-sercfg" that were accidentally lost in r9214. (user: jacob size: 16220)
| ︙ | |||
500 501 502 503 504 505 506 507 508 509 510 511 512 513 | 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 | + + + + |
switch (*nextitem) {
case '1':
case '2':
conf_set_int(conf, CONF_serstopbits, 2 * (*nextitem-'0'));
break;
case '5':
case '6':
case '7':
case '8':
case '9':
conf_set_int(conf, CONF_serdatabits, *nextitem-'0');
break;
case 'n':
conf_set_int(conf, CONF_serparity, SER_PAR_NONE);
break;
case 'o':
|
| ︙ |