mirror of https://github.com/acidanthera/audk.git
Enhance TargetName check when save iSCSI configuration.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Wu, Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Fu, Siyuan <siyuan.fu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16167 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f55d71ec95
commit
d28c4ed72b
|
@ -872,6 +872,23 @@ IScsiFormCallback (
|
|||
Status = EFI_INVALID_PARAMETER;
|
||||
break;
|
||||
}
|
||||
|
||||
//
|
||||
// Validate iSCSI target name configuration again:
|
||||
// The format of iSCSI target name is already verified when user input the name;
|
||||
// here we only check the case user does not input the name.
|
||||
//
|
||||
if (Private->Current->SessionConfigData.TargetName[0] == '\0') {
|
||||
CreatePopUp (
|
||||
EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE,
|
||||
&Key,
|
||||
L"iSCSI target name is NULL!",
|
||||
NULL
|
||||
);
|
||||
Status = EFI_INVALID_PARAMETER;
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (IfrNvData->CHAPType != ISCSI_CHAP_NONE) {
|
||||
|
|
Loading…
Reference in New Issue