Changeset 79822 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2019 8:12:28 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132196
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DHCPConfigImpl.h
r79800 r79822 387 387 : DHCPConfig(DHCPConfigScope_MAC, this) 388 388 , m_uSlot(~(ULONG)0) 389 , m_uMACAddressResolvedVersion( false)389 , m_uMACAddressResolvedVersion(0) 390 390 { 391 391 RT_ZERO(m_MACAddress); -
trunk/src/VBox/Main/src-server/DHCPConfigImpl.cpp
r79800 r79822 1239 1239 { 1240 1240 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1241 if ((int32_t)( m_uMACAddressResolvedVersion - uVersion) >= 0)1241 if ((int32_t)(uVersion - m_uMACAddressResolvedVersion) >= 0) 1242 1242 { 1243 1243 m_uMACAddressResolvedVersion = uVersion;
Note:
See TracChangeset
for help on using the changeset viewer.