* grub-core/lib/syslinux_parse.c: Fix timeout quoting.
This commit is contained in:
parent
2009da62f2
commit
a72fc329eb
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2014-04-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/lib/syslinux_parse.c: Fix timeout quoting.
|
||||||
|
|
||||||
2014-04-04 Vladimir Serbinenko <phcoder@gmail.com>
|
2014-04-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* include/grub/libgcc.h: Remove ctzsi2 and ctzdi2. They're no longer
|
* include/grub/libgcc.h: Remove ctzsi2 and ctzdi2. They're no longer
|
||||||
|
|
|
@ -1432,7 +1432,7 @@ config_file (struct output_buffer *outbuf,
|
||||||
for (curentry = menu.entries; curentry->next; curentry = curentry->next);
|
for (curentry = menu.entries; curentry->next; curentry = curentry->next);
|
||||||
lentry = curentry;
|
lentry = curentry;
|
||||||
|
|
||||||
print_string ("set timeout='");
|
print_string ("set timeout=");
|
||||||
err = print_num (outbuf, (menu.timeout + 9) / 10);
|
err = print_num (outbuf, (menu.timeout + 9) / 10);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
Loading…
Add table
Reference in a new issue