Fix a use of strlen() instead of Strlen()

Signed-off-by: Peter Jones <pjones@redhat.com>
Upstream-commit-id: 1870bae7960
This commit is contained in:
Peter Jones 2019-09-05 10:36:23 -04:00
parent 2cbf56b82a
commit c372ec7a25

2
shim.c
View File

@ -2118,7 +2118,7 @@ static int is_our_path(EFI_LOADED_IMAGE *li, CHAR16 *path)
dprint(L"dppath: %s\n", dppath);
dprint(L"path: %s\n", path);
if (StrnCaseCmp(dppath, PathName, strlen(dppath)))
if (StrnCaseCmp(dppath, PathName, StrLen(dppath)))
ret = 0;
done: