]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* loader/multiboot_loader.c: Fix multiboot command
authorproski <proski@localhost>
Sun, 30 Dec 2007 08:49:57 +0000 (08:49 +0000)
committerproski <proski@localhost>
Sun, 30 Dec 2007 08:49:57 +0000 (08:49 +0000)
unregistration.  Fix all typos in the word "multiboot".

ChangeLog
loader/multiboot_loader.c

index a6ad8cbf2d4e49b474536bc918105ff6c74f97e2..0d55581df6221232547a1285d2a1f8f78f177761 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-30  Pavel Roskin  <proski@gnu.org>
+
+       * loader/multiboot_loader.c: Fix multiboot command
+       unregistration.  Fix all typos in the word "multiboot".
+
 2007-12-19  Pavel Roskin  <proski@gnu.org>
 
        * util/grub.d/10_linux.in: Refactor search for initrd.  Add
index 6bc46e437bac2ee8f30ae34cf123644130362747..d6e86f1b032bfd70ab25c7d41ece621893d20804 100644 (file)
@@ -35,8 +35,8 @@ grub_dl_t my_mod;
 /* This tracks which version of multiboot to use when using
  * the module command. By default use multiboot version 1.
  * values:
- *      1 - Mulitboot version 1 
- *      2 - Mutliboot version 2
+ *      1 - Multiboot version 1 
+ *      2 - Multiboot version 2
  */
 
 static unsigned int module_version_status = 1; 
@@ -125,7 +125,7 @@ grub_rescue_cmd_multiboot_loader (int argc, char *argv[])
   if (header_multi_ver_found == 0 || header_multi_ver_found == 2)
     {
       grub_dprintf ("multiboot_loader",
-           "Launching mulitboot 2 grub_multiboot2() function\n");
+           "Launching multiboot 2 grub_multiboot2() function\n");
       grub_multiboot2 (argc, argv);
       module_version_status = 2;
     }
@@ -171,6 +171,6 @@ GRUB_MOD_INIT(multiboot)
 
 GRUB_MOD_FINI(multiboot)
 {
-  grub_rescue_unregister_command ("mulitboot");
+  grub_rescue_unregister_command ("multiboot");
   grub_rescue_unregister_command ("module");
 }