You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
7 years ago
|
From d47063b3fdf1acb1028893751ca98f764a0ac39b Mon Sep 17 00:00:00 2001
|
||
|
From: Vladimir Serbinenko <phcoder@gmail.com>
|
||
|
Date: Sun, 6 Apr 2014 00:44:44 +0200
|
||
|
Subject: [PATCH 076/237] * grub-core/lib/syslinux_parse.c: Fix timeout
|
||
|
quoting.
|
||
|
|
||
|
---
|
||
|
ChangeLog | 4 ++++
|
||
|
grub-core/lib/syslinux_parse.c | 2 +-
|
||
|
2 files changed, 5 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/ChangeLog b/ChangeLog
|
||
|
index 90e41bd..50d9291 100644
|
||
|
--- a/ChangeLog
|
||
|
+++ b/ChangeLog
|
||
|
@@ -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>
|
||
|
|
||
|
* include/grub/libgcc.h: Remove ctzsi2 and ctzdi2. They're no longer
|
||
|
diff --git a/grub-core/lib/syslinux_parse.c b/grub-core/lib/syslinux_parse.c
|
||
|
index 21fa175..6bc504b 100644
|
||
|
--- a/grub-core/lib/syslinux_parse.c
|
||
|
+++ b/grub-core/lib/syslinux_parse.c
|
||
|
@@ -1432,7 +1432,7 @@ config_file (struct output_buffer *outbuf,
|
||
|
for (curentry = menu.entries; curentry->next; curentry = curentry->next);
|
||
|
lentry = curentry;
|
||
|
|
||
|
- print_string ("set timeout='");
|
||
|
+ print_string ("set timeout=");
|
||
|
err = print_num (outbuf, (menu.timeout + 9) / 10);
|
||
|
if (err)
|
||
|
return err;
|
||
|
--
|
||
|
2.9.3
|
||
|
|