Blame SOURCES/0001-Make-some-things-dprint-instead-of-console_print.patch

00e791
From 1d50318f448b73b072724eb6664d311e6084a446 Mon Sep 17 00:00:00 2001
00e791
From: Peter Jones <pjones@redhat.com>
00e791
Date: Tue, 10 Apr 2018 12:36:34 -0400
00e791
Subject: [PATCH 01/62] Make some things dprint() instead of console_print()
00e791
00e791
Signed-off-by: Peter Jones <pjones@redhat.com>
00e791
Upstream-commit-id: dad59f8c0f36
00e791
---
00e791
 shim.c | 4 ++--
00e791
 1 file changed, 2 insertions(+), 2 deletions(-)
00e791
00e791
diff --git a/shim.c b/shim.c
00e791
index 00155346c12..ff0817009cd 100644
00e791
--- a/shim.c
00e791
+++ b/shim.c
00e791
@@ -2087,8 +2087,8 @@ static int is_our_path(EFI_LOADED_IMAGE *li, CHAR16 *path, UINTN len)
00e791
 	if (!dppath)
00e791
 		return 0;
00e791
 
00e791
-	console_print(L"dppath: %s\n", dppath);
00e791
-	console_print(L"path:   %s\n", path);
00e791
+	dprint(L"dppath: %s\n", dppath);
00e791
+	dprint(L"path:   %s\n", path);
00e791
 	if (StrnCaseCmp(dppath, path, len))
00e791
 		ret = 0;
00e791
 
00e791
-- 
00e791
2.26.2
00e791