From: fzielcke Date: Tue, 16 Jun 2009 16:06:49 +0000 (+0000) Subject: 2009-06-16 James Jarvis X-Git-Tag: 1.98~791 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0644f96c9f18a70af3b91c48ec5a772a3770de95;p=thirdparty%2Fgrub.git 2009-06-16 James Jarvis * commands/help.c GRUB_MOD_INIT(echo): Fix the help output of `echo' command. --- 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); }