diff --git a/DfciPkg/IdentityAndAuthManager/AuthManagerProvision.c b/DfciPkg/IdentityAndAuthManager/AuthManagerProvision.c index 9bce940b..a71e0bb4 100644 --- a/DfciPkg/IdentityAndAuthManager/AuthManagerProvision.c +++ b/DfciPkg/IdentityAndAuthManager/AuthManagerProvision.c @@ -617,7 +617,7 @@ ApplyNewIdentityPacket ( ); if (EFI_ERROR (Status)) { - DEBUG ((DEBUG_ERROR, "DfciUiGetAnswerFromUser failed %r\n", Status)); + DEBUG ((DEBUG_ERROR, "LocalGetAnswerFromUser failed %r\n", Status)); if (Status == EFI_NOT_READY) { Data->State = DFCI_PACKET_STATE_DATA_SYSTEM_ERROR; Data->StatusCode = EFI_NOT_READY; @@ -634,7 +634,7 @@ ApplyNewIdentityPacket ( } if (Data->State != DFCI_PACKET_STATE_DATA_USER_APPROVED) { - DEBUG ((DEBUG_ERROR, "DfciUiGetAnswerFromUser - User Rejected Change\n")); + DEBUG ((DEBUG_ERROR, "LocalGetAnswerFromUser - User Rejected Change\n")); goto CLEANUP; } diff --git a/DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.c b/DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.c index 1e2d8d93..66cb934a 100644 --- a/DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.c +++ b/DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.c @@ -105,35 +105,6 @@ DfciUiDisplayAuthDialog ( return EFI_UNSUPPORTED; } -/** - This routine is called by DFCI to prompt a local user to confirm certificate - provisioning operations. - - @param AuthMgrProtocol Supplies a pointer to the authentication - manager protocol. - @param TrustedCert Supplies a pointer to a trusted certificate. - @param TrustedCertSize Supplies the size in bytes of the trusted - certificate. - @param AuthToken Supplies a pointer that will receive an - authentication token. - - @return EFI_NOT_READY Indicates that UI components are not available. - @return EFI_ACCESS_DENIED The user rejected the operation. - @return EFI_SUCCESS The user approved the operation. - -**/ -EFI_STATUS -EFIAPI -DfciUiGetAnswerFromUser ( - DFCI_AUTHENTICATION_PROTOCOL *AuthMgrProtocol, - UINT8 *TrustedCert, - UINT16 TrustedCertSize, - OUT DFCI_AUTH_TOKEN *AuthToken - ) -{ - return EFI_SUCCESS; -} - /** DfciUiExitSecurityBoundary