Blame SOURCES/0076-grub-core-lib-syslinux_parse.c-Fix-timeout-quoting.patch

f725e3
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f725e3
From: Vladimir Serbinenko <phcoder@gmail.com>
f725e3
Date: Sun, 6 Apr 2014 00:44:44 +0200
f725e3
Subject: [PATCH] * grub-core/lib/syslinux_parse.c: Fix timeout quoting.
f725e3
f725e3
---
f725e3
 grub-core/lib/syslinux_parse.c | 2 +-
f725e3
 ChangeLog                      | 4 ++++
f725e3
 2 files changed, 5 insertions(+), 1 deletion(-)
f725e3
f725e3
diff --git a/grub-core/lib/syslinux_parse.c b/grub-core/lib/syslinux_parse.c
f725e3
index 21fa17504aa..6bc504b7c58 100644
f725e3
--- a/grub-core/lib/syslinux_parse.c
f725e3
+++ b/grub-core/lib/syslinux_parse.c
f725e3
@@ -1432,7 +1432,7 @@ config_file (struct output_buffer *outbuf,
f725e3
       for (curentry = menu.entries; curentry->next; curentry = curentry->next);
f725e3
       lentry = curentry;
f725e3
 
f725e3
-      print_string ("set timeout='");
f725e3
+      print_string ("set timeout=");
f725e3
       err = print_num (outbuf, (menu.timeout + 9) / 10);
f725e3
       if (err)
f725e3
 	return err;
f725e3
diff --git a/ChangeLog b/ChangeLog
f725e3
index 90e41bdadb3..50d9291624a 100644
f725e3
--- a/ChangeLog
f725e3
+++ b/ChangeLog
f725e3
@@ -1,3 +1,7 @@
f725e3
+2014-04-06  Vladimir Serbinenko  <phcoder@gmail.com>
f725e3
+
f725e3
+	* grub-core/lib/syslinux_parse.c: Fix timeout quoting.
f725e3
+
f725e3
 2014-04-04  Vladimir Serbinenko  <phcoder@gmail.com>
f725e3
 
f725e3
 	* include/grub/libgcc.h: Remove ctzsi2 and ctzdi2. They're no longer