diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-06-28 13:47:52 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-06-30 13:08:03 +0200 |
commit | bb7a152c2cea9dcdc533507c22a8c20dcb85c123 (patch) | |
tree | b8b9a61a53cd60ed27f488b6b44c5ef40edb6f2f /NetworkPkg/IpSecDxe | |
parent | 0206697943b70400a6cd159b38b7723f8896e59d (diff) | |
download | edk2-platforms-bb7a152c2cea9dcdc533507c22a8c20dcb85c123.tar.xz |
NetworkPkg: fix ASSERT_EFI_ERROR() typos
A number of code locations use
ASSERT_EFI_ERROR (BooleanExpression)
instead of
ASSERT (BooleanExpression)
Fix them.
Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Diffstat (limited to 'NetworkPkg/IpSecDxe')
-rw-r--r-- | NetworkPkg/IpSecDxe/Ikev2/Sa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NetworkPkg/IpSecDxe/Ikev2/Sa.c b/NetworkPkg/IpSecDxe/Ikev2/Sa.c index 74ef79c237..4cbfac33b1 100644 --- a/NetworkPkg/IpSecDxe/Ikev2/Sa.c +++ b/NetworkPkg/IpSecDxe/Ikev2/Sa.c @@ -384,7 +384,7 @@ Ikev2InitPskParser ( // 5. Generate Nr_b
//
IkeSaSession->NrBlock = IkeGenerateNonce (IKE_NONCE_SIZE);
- ASSERT_EFI_ERROR (IkeSaSession->NrBlock != NULL);
+ ASSERT (IkeSaSession->NrBlock != NULL);
IkeSaSession->NrBlkSize = IKE_NONCE_SIZE;
//
|