NetworkPkg: Change use of EFI_D_* to DEBUG_*
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3739 Update all use of EFI_D_* defines in DEBUG() macros to DEBUG_* defines. Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael Kubacki <michael.kubacki@microsoft.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@linux.intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
5f289f3ae3
commit
c49ca4a29e
@@ -680,7 +680,7 @@ TlsConfigureSession (
|
||||
//
|
||||
Status = TlsConfigCipherList (HttpInstance);
|
||||
if (EFI_ERROR (Status) && Status != EFI_NOT_FOUND) {
|
||||
DEBUG ((EFI_D_ERROR, "TlsConfigCipherList: return %r error.\n", Status));
|
||||
DEBUG ((DEBUG_ERROR, "TlsConfigCipherList: return %r error.\n", Status));
|
||||
return Status;
|
||||
}
|
||||
|
||||
@@ -689,7 +689,7 @@ TlsConfigureSession (
|
||||
//
|
||||
Status = TlsConfigCertificate (HttpInstance);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_ERROR, "TLS Certificate Config Error!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "TLS Certificate Config Error!\n"));
|
||||
return Status;
|
||||
}
|
||||
|
||||
@@ -1874,7 +1874,7 @@ HttpsReceive (
|
||||
FreePool (GetSessionDataBuffer);
|
||||
|
||||
if(HttpInstance->TlsSessionState == EfiTlsSessionError) {
|
||||
DEBUG ((EFI_D_ERROR, "TLS Session State Error!\n"));
|
||||
DEBUG ((DEBUG_ERROR, "TLS Session State Error!\n"));
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
|
||||
@@ -1887,4 +1887,3 @@ HttpsReceive (
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user