From 3af91e23cbafdc7a6b91e22bb1882be70ea269d3 Mon Sep 17 00:00:00 2001 From: rsun3 Date: Tue, 10 Aug 2010 07:36:00 +0000 Subject: Minor code refinement. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10785 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Library/DxeNetLib/DxeNetLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MdeModulePkg/Library/DxeNetLib') diff --git a/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c b/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c index 5bad2f13a6..55c72027fc 100644 --- a/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c +++ b/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c @@ -2949,10 +2949,10 @@ NetLibAsciiStrToIp6 ( LeadZeroCnt++; } } else { - if ((Cnt == 4) && (*TempStr == '0') && (LeadZero == FALSE)) { + if ((Cnt == 4) && (*TempStr == '0') && !LeadZero) { return EFI_INVALID_PARAMETER; } - if ((Cnt != 0) && (Cnt < 4) && (LeadZero == TRUE)) { + if ((Cnt != 0) && (Cnt < 4) && LeadZero) { return EFI_INVALID_PARAMETER; } } -- cgit v1.2.3