aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@gmail.com>2022-02-22 11:39:03 +0000
committerWarner Losh <imp@FreeBSD.org>2022-04-01 03:43:35 +0000
commitc3eec165508b47b3474a8b27c29712135ea0d137 (patch)
tree9937d578fad02dd9494445c8a73f300c85bed495
parent1318b1ee9c4ee9ef6c1be600adc252a713b93961 (diff)
downloadsrc-c3eec165508b47b3474a8b27c29712135ea0d137.tar.gz
src-c3eec165508b47b3474a8b27c29712135ea0d137.zip
libefivar: Correct the string expression of UTF8 vendor device path
According to UEFI spec, the string expression of UTF8 vendor device node should be displayed as: VenUtf8(). Current code display it as: VenUft8() by mistake when convert device path node to text. This commit is to fix this bug. Upstream Bug: https://bugzilla.tianocore.org/show_bug.cgi?id=1225 Obtained from: https://github.com/tianocore/edk2/commit/959be180e185869b71db9dad34c3f4bba660d724 Pull Request: https://github.com/freebsd/freebsd-src/pull/580 (cherry picked from commit 91a35e5803bef59b8ca67b0621216124cc2e42f8)
-rw-r--r--lib/libefivar/efivar-dp-format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libefivar/efivar-dp-format.c b/lib/libefivar/efivar-dp-format.c
index 274c2fccd622..a063dcff2218 100644
--- a/lib/libefivar/efivar-dp-format.c
+++ b/lib/libefivar/efivar-dp-format.c
@@ -255,7 +255,7 @@ DevPathToTextVendor (
UefiDevicePathLibCatPrint (Str, "VenVt100Plus()");
return ;
} else if (CompareGuid (&Vendor->Guid, &gEfiVTUTF8Guid)) {
- UefiDevicePathLibCatPrint (Str, "VenUft8()");
+ UefiDevicePathLibCatPrint (Str, "VenUtf8()");
return ;
} else if (CompareGuid (&Vendor->Guid, &gEfiUartDevicePathGuid)) {
FlowControlMap = (((UART_FLOW_CONTROL_DEVICE_PATH *) Vendor)->FlowControlMap);