* grub-core/net/net.c (grub_cmd_deladdr): Fix index.

Reported by: Seth Goldberg
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-21 16:16:45 +01:00
parent aad32b1402
commit af0250d919
2 changed files with 6 additions and 1 deletions

View file

@ -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"));