From: Shumin Qiu Date: Thu, 23 Jan 2014 00:29:53 +0000 (+0000) Subject: Update prints of variable attributes from 'RS' to 'RT' for 'Dmpstore' command. X-Git-Tag: edk2-stable201903~11793 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=14868afbb8d66f9934111fc8f1879053343264d9;ds=sidebyside Update prints of variable attributes from 'RS' to 'RT' for 'Dmpstore' command. Signed-off-by: Shumin Qiu Reviewed-by: Jaben Carsey git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15164 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c index b41636c7e8..5642f6ff55 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/DmpStore.c @@ -56,7 +56,7 @@ GetAttrType ( StrnCatGrow (&RetString, &BufLen, L"+NV", 0); } if ((Atts & EFI_VARIABLE_RUNTIME_ACCESS) != 0) { - StrnCatGrow (&RetString, &BufLen, L"+RS+BS", 0); + StrnCatGrow (&RetString, &BufLen, L"+RT+BS", 0); } else if ((Atts & EFI_VARIABLE_BOOTSERVICE_ACCESS) != 0) { StrnCatGrow (&RetString, &BufLen, L"+BS", 0); }