Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to a function removed long ago #76

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DfciPkg/IdentityAndAuthManager/AuthManagerProvision.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}

Expand Down
29 changes: 0 additions & 29 deletions DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down