From 0644f96c9f18a70af3b91c48ec5a772a3770de95 Mon Sep 17 00:00:00 2001 From: fzielcke Date: Tue, 16 Jun 2009 16:06:49 +0000 Subject: [PATCH] 2009-06-16 James Jarvis * commands/help.c GRUB_MOD_INIT(echo): Fix the help output of `echo' command. --- ChangeLog | 7 ++++++- commands/echo.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64153e0e3..f3e631c1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-06-16 James Jarvis + + * commands/help.c GRUB_MOD_INIT(echo): Fix the help output of + `echo' command. + 2009-06-16 Pavel Roskin * boot/i386/pc/boot.S: Remove root_drive. Assert offset of @@ -62,7 +67,7 @@ * loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition handling -2009-06-13 Jun Inoue +2009-06-13 Jun Inoue * util/grub-mkconfig.in: Fix parsing of --output option. diff --git a/commands/echo.c b/commands/echo.c index eb250052f..69aa3be3c 100644 --- a/commands/echo.c +++ b/commands/echo.c @@ -113,7 +113,7 @@ static grub_extcmd_t cmd; GRUB_MOD_INIT(echo) { cmd = grub_register_extcmd ("echo", grub_cmd_echo, GRUB_COMMAND_FLAG_BOTH, - "echo [-e|-n] FILE", "Display a line of text.", + "echo [-e|-n] STRING", "Display a line of text.", options); }