Blame SOURCES/0033-Fix-a-use-of-strlen-instead-of-Strlen.patch

d1e1c8
From c372ec7a254147f70d62c1f72da5806d42df6994 Mon Sep 17 00:00:00 2001
d1e1c8
From: Peter Jones <pjones@redhat.com>
d1e1c8
Date: Thu, 5 Sep 2019 10:36:23 -0400
d1e1c8
Subject: [PATCH 33/62] Fix a use of strlen() instead of Strlen()
d1e1c8
d1e1c8
Signed-off-by: Peter Jones <pjones@redhat.com>
d1e1c8
Upstream-commit-id: 1870bae7960
d1e1c8
---
d1e1c8
 shim.c | 2 +-
d1e1c8
 1 file changed, 1 insertion(+), 1 deletion(-)
d1e1c8
d1e1c8
diff --git a/shim.c b/shim.c
d1e1c8
index 16911a37b17..a0eb19b91fe 100644
d1e1c8
--- a/shim.c
d1e1c8
+++ b/shim.c
d1e1c8
@@ -2118,7 +2118,7 @@ static int is_our_path(EFI_LOADED_IMAGE *li, CHAR16 *path)
d1e1c8
 
d1e1c8
 	dprint(L"dppath: %s\n", dppath);
d1e1c8
 	dprint(L"path:   %s\n", path);
d1e1c8
-	if (StrnCaseCmp(dppath, PathName, strlen(dppath)))
d1e1c8
+	if (StrnCaseCmp(dppath, PathName, StrLen(dppath)))
d1e1c8
 		ret = 0;
d1e1c8
 
d1e1c8
 done:
d1e1c8
-- 
d1e1c8
2.26.2
d1e1c8