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

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