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.
35 lines
1.2 KiB
35 lines
1.2 KiB
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
|
From: Vladimir Serbinenko <phcoder@gmail.com> |
|
Date: Sun, 6 Apr 2014 00:44:44 +0200 |
|
Subject: [PATCH] * grub-core/lib/syslinux_parse.c: Fix timeout quoting. |
|
|
|
--- |
|
grub-core/lib/syslinux_parse.c | 2 +- |
|
ChangeLog | 4 ++++ |
|
2 files changed, 5 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/grub-core/lib/syslinux_parse.c b/grub-core/lib/syslinux_parse.c |
|
index 21fa17504aa..6bc504b7c58 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; |
|
diff --git a/ChangeLog b/ChangeLog |
|
index 90e41bdadb3..50d9291624a 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
|
|
|