* grub-core/net/net.c (grub_cmd_deladdr): Fix index.
Reported by: Seth Goldberg
This commit is contained in:
parent
aad32b1402
commit
af0250d919
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-02-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/net/net.c (grub_cmd_deladdr): Fix index.
|
||||
Reported by: Seth Goldberg
|
||||
|
||||
2012-02-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* configure.ac: Add -fno-builtin-gettext on host if NLS is disabled.
|
||||
|
|
|
@ -658,7 +658,7 @@ grub_cmd_deladdr (struct grub_command *cmd __attribute__ ((unused)),
|
|||
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("one argument expected"));
|
||||
|
||||
FOR_NET_NETWORK_LEVEL_INTERFACES (inter)
|
||||
if (grub_strcmp (inter->name, args[1]) == 0)
|
||||
if (grub_strcmp (inter->name, args[0]) == 0)
|
||||
break;
|
||||
if (inter == NULL)
|
||||
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("address not found"));
|
||||
|
|
Loading…
Reference in a new issue