mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/Universal/Network/IScsiDxe/IScsiImpl.h:
* Fix #include filename case for building under Linux MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c: MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Input.c: * Fix warning of 'unhandled' cases in switch statement generated by GCC. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7071 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c4f9201e2e
commit
d0cca731c3
|
@ -22,7 +22,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
#include <Library/UefiRuntimeServicesTableLib.h>
|
||||
#include "IScsiCommon.h"
|
||||
#include "IScsiDriver.h"
|
||||
#include "IscsiInitiatorName.h"
|
||||
#include "IScsiInitiatorName.h"
|
||||
#include "ComponentName.h"
|
||||
#include "IScsiConfigNVDataStruc.h"
|
||||
#include "IScsiExtScsiPassThru.h"
|
||||
|
|
|
@ -1272,6 +1272,8 @@ NO_UPDATE:
|
|||
TcpClose (Tcb);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -873,6 +873,8 @@ TcpOnAppAbort (
|
|||
case TCP_CLOSE_WAIT:
|
||||
TcpResetConnection (Tcb);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
TcpSetState (Tcb, TCP_CLOSED);
|
||||
|
|
Loading…
Reference in New Issue