2008-02-10 Alexandre Boeglin <alex@boeglin.org>

* normal/arg.c (grub_arg_parse): If one of the args is "--", call add_arg()
  on remaining N args, instead of "--" arg N times.
This commit is contained in:
boeglin 2008-02-10 15:18:03 +00:00
parent 78d5a08be1
commit 83abee317d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-02-10 Alexandre Boeglin <alex@boeglin.org>
* normal/arg.c (grub_arg_parse): If one of the args is "--", call add_arg()
on remaining N args, instead of "--" arg N times.
2008-02-09 Vesa Jaaskelainen <chaac@nic.fi> 2008-02-09 Vesa Jaaskelainen <chaac@nic.fi>
* font/manager.c (unknown_glyph): Added variable for unknown glyph. * font/manager.c (unknown_glyph): Added variable for unknown glyph.

View file

@ -313,7 +313,7 @@ grub_arg_parse (grub_command_t cmd, int argc, char **argv,
if (grub_strlen (arg) == 2) if (grub_strlen (arg) == 2)
{ {
for (curarg++; curarg < argc; curarg++) for (curarg++; curarg < argc; curarg++)
if (add_arg (arg) != 0) if (add_arg (argv[curarg]) != 0)
goto fail; goto fail;
break; break;
} }