Fix serial --rtscts option processing
This commit is contained in:
parent
17328db3b3
commit
bac5d1a64a
2 changed files with 7 additions and 2 deletions
|
@ -241,9 +241,9 @@ grub_cmd_serial (grub_extcmd_context_t ctxt, int argc, char **args)
|
|||
|
||||
if (state[OPTION_RTSCTS].set)
|
||||
{
|
||||
if (grub_strcmp (state[OPTION_PARITY].arg, "on") == 0)
|
||||
if (grub_strcmp (state[OPTION_RTSCTS].arg, "on") == 0)
|
||||
config.rtscts = 1;
|
||||
if (grub_strcmp (state[OPTION_PARITY].arg, "off") == 0)
|
||||
else if (grub_strcmp (state[OPTION_RTSCTS].arg, "off") == 0)
|
||||
config.rtscts = 0;
|
||||
else
|
||||
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue