Changeset 18462 in vbox for trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
- Timestamp:
- Mar 28, 2009 5:11:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
r18282 r18462 422 422 int32_t m_cVerbosity; 423 423 uint8_t m_uCurMsgType; 424 uint16_tm_cbCurMsg;424 size_t m_cbCurMsg; 425 425 PCRTNETBOOTP m_pCurMsg; 426 426 VBOXNETUDPHDRS m_CurHdrs; … … 1395 1395 m_pOpt = (PRTNETDHCPOPT)m_pbCur; 1396 1396 m_pOpt->dhcp_opt = uOption; 1397 m_pOpt->dhcp_len = cb;1397 m_pOpt->dhcp_len = (uint8_t)cb; 1398 1398 m_pbCur += 2; 1399 1399 return true; … … 2070 2070 } 2071 2071 2072 /** @todo r=bird: crt0.c is already doing all this stuff for us. It's available thru stdlib.h __argv and __argc IIRC. */ 2073 2072 2074 LPWSTR lpwCmd = GetCommandLineW(); 2073 2075 size_t size = wcslen(lpwCmd);
Note:
See TracChangeset
for help on using the changeset viewer.