* grub-core/commands/loadenv.c (grub_cmd_save_env): Remove unset
variables.
This commit is contained in:
parent
6cd660435e
commit
5ade4a4248
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/commands/loadenv.c (grub_cmd_save_env): Remove unset
|
||||||
|
variables.
|
||||||
|
|
||||||
2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/gettext/gettext.c (grub_gettext_init_ext): Ignore errors
|
* grub-core/gettext/gettext.c (grub_gettext_init_ext): Ignore errors
|
||||||
|
|
|
@ -432,6 +432,8 @@ grub_cmd_save_env (grub_extcmd_context_t ctxt, int argc, char **args)
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
grub_envblk_delete (envblk, args[0]);
|
||||||
|
|
||||||
argc--;
|
argc--;
|
||||||
args++;
|
args++;
|
||||||
|
|
Loading…
Reference in a new issue