diff options
author | manison <manison@users.noreply.github.com> | 2019-01-21 18:32:27 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-01-21 18:32:27 +0100 |
commit | a0a048928cdc55bfc8fb1830c2f282b3de752d41 (patch) | |
tree | e00d517c337e588ad61f444b35c97ae575895c81 /DcsInt | |
parent | ce24edac4f9a132138817060b3a8f2a492ade2e4 (diff) | |
download | VeraCrypt-DCS-a0a048928cdc55bfc8fb1830c2f282b3de752d41.tar.gz VeraCrypt-DCS-a0a048928cdc55bfc8fb1830c2f282b3de752d41.zip |
Rename functions conflicting with upstream edk (#10)
Diffstat (limited to 'DcsInt')
-rw-r--r-- | DcsInt/DcsInt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DcsInt/DcsInt.c b/DcsInt/DcsInt.c index f7c3965..0cc4c4e 100644 --- a/DcsInt/DcsInt.c +++ b/DcsInt/DcsInt.c @@ -869,7 +869,7 @@ OnExit( if (action == NULL) return retValue;
if (OnExitGetParam(action, "guid", &guidStr, NULL)) {
EFI_GUID tmp;
- if (AsciiStrToGuid(&tmp, guidStr)) {
+ if (DcsAsciiStrToGuid(&tmp, guidStr)) {
guid = MEM_ALLOC(sizeof(EFI_GUID));
CopyMem(guid, &tmp, sizeof(EFI_GUID));
}
|