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

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