Re: [PATCH] Fix error message about the wrong command having failed: mformat instead of mcopy

2019-05-10 Thread Vincent Legoll
Hello,

> May I add your SOB? If yes then Reviewed-by: Daniel Kiper 
> 

Yes, and sorry to have forgotten to add it

-- 
Vincent Legoll

___
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel


[PATCH] Fix error message about the wrong command having failed: mformat instead of mcopy

2019-04-27 Thread Vincent Legoll
---
 util/grub-mkrescue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/grub-mkrescue.c b/util/grub-mkrescue.c
index 21e5ce4e4..ce2cbc4f1 100644
--- a/util/grub-mkrescue.c
+++ b/util/grub-mkrescue.c
@@ -815,7 +815,7 @@ main (int argc, char *argv[])
grub_util_error ("`%s` invocation failed\n", "mformat");
   rv = grub_util_exec ((const char * []) { "mcopy", "-s", "-i", efiimgfat, 
efidir_efi, "::/", NULL });
   if (rv != 0)
-   grub_util_error ("`%s` invocation failed\n", "mformat");
+   grub_util_error ("`%s` invocation failed\n", "mcopy");
   xorriso_push ("--efi-boot");
   xorriso_push ("efi.img");
   xorriso_push ("-efi-boot-part");
-- 
2.19.1


___
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel