7e98da058f
This change reorganizes and cleanups our patches to reduce the patch number from 314 patches to 187. That's achieved by dropping patches that are later reverted and squashing fixes for earlier patches that introduced features. There are no code changes and the diff with upstream is the same before and after the cleanup. Having fewer patches makes easier to manage the patchset and also will ease to rebase them on top of the latest grub-2.04 release. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
23 lines
632 B
Diff
23 lines
632 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Mon, 26 Jun 2017 12:43:22 -0400
|
|
Subject: [PATCH] don't ignore const
|
|
|
|
---
|
|
grub-core/net/tftp.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/net/tftp.c b/grub-core/net/tftp.c
|
|
index dcd82494309..f90071353ad 100644
|
|
--- a/grub-core/net/tftp.c
|
|
+++ b/grub-core/net/tftp.c
|
|
@@ -307,7 +307,7 @@ static void
|
|
grub_normalize_filename (char *normalized, const char *filename)
|
|
{
|
|
char *dest = normalized;
|
|
- char *src = filename;
|
|
+ const char *src = filename;
|
|
|
|
while (*src != '\0')
|
|
{
|