diff options
author | Fu Siyuan <siyuan.fu@intel.com> | 2016-07-12 09:58:46 +0800 |
---|---|---|
committer | Fu Siyuan <siyuan.fu@intel.com> | 2016-07-12 10:00:05 +0800 |
commit | c882bdc6712314f255c92d7c951eaf9760a9de38 (patch) | |
tree | 48b3c2515112b40115602220da980b524cddc762 /MdeModulePkg | |
parent | 07cae0659795b4d6b59f67eabb8426c7c7742318 (diff) | |
download | edk2-platforms-c882bdc6712314f255c92d7c951eaf9760a9de38.tar.xz |
MdeModulePkg: Fix build error in the PXE driver.
Fix the build error introduced by 0a28d02d9fb5293757c507e592a4d0404a7ecf74.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Fu Siyuan <siyuan.fu@intel.com>
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.c b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.c index a20fdb7a84..0865ddd7cd 100644 --- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.c +++ b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcSupport.c @@ -79,7 +79,7 @@ PxeBcConfigureUdpWriteInstance ( Udp4CfgData.ReceiveTimeout = PXEBC_DEFAULT_LIFETIME;
Udp4CfgData.TypeOfService = ToS;
- Udp4CfgData.TimeToLive = TTL;
+ Udp4CfgData.TimeToLive = Ttl;
Udp4CfgData.AllowDuplicatePort = TRUE;
CopyMem (&Udp4CfgData.StationAddress, StationIp, sizeof (*StationIp));
|