mirror of https://github.com/acidanthera/audk.git
Fix a bug that parentheses do not place correctly in UNDI driver.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3739 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e75fe0ebba
commit
77a0a4d954
|
@ -595,7 +595,7 @@ Returns:
|
|||
}
|
||||
|
||||
my_filter = (UINT8) ((AdapterInfo->Rx_Filter & PXE_OPFLAGS_RECEIVE_FILTER_PROMISCUOUS) ? 1 : 0);
|
||||
my_filter = (UINT8) ((my_filter | (AdapterInfo->Rx_Filter & PXE_OPFLAGS_RECEIVE_FILTER_BROADCAST) ? 0 : 2));
|
||||
my_filter = (UINT8) (my_filter | ((AdapterInfo->Rx_Filter & PXE_OPFLAGS_RECEIVE_FILTER_BROADCAST) ? 0 : 2));
|
||||
|
||||
data_ptr[15] = (UINT8) (data_ptr[15] | my_filter);
|
||||
data_ptr[19] = (UINT8) (AdapterInfo->Duplex ? 0xC0 : 0x80);
|
||||
|
|
Loading…
Reference in New Issue