Changeset 20634 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Jun 16, 2009 2:20:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r20631 r20634 2224 2224 { 2225 2225 #if !defined(VBOX_WITH_NETFLT) && defined(RT_OS_LINUX) 2226 Assert ((int)p Console->maTapFD[ulInstance] >= 0);2227 if ((int)p Console->maTapFD[ulInstance] >= 0)2226 Assert ((int)pThis->maTapFD[uInstance] >= 0); 2227 if ((int)pThis->maTapFD[uInstance] >= 0) 2228 2228 { 2229 2229 if (fSniffer) … … 2241 2241 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); 2242 2242 RC_CHECK(); 2243 rc = CFGMR3InsertInteger(pCfg, "FileHandle", p Console->maTapFD[ulInstance]);2243 rc = CFGMR3InsertInteger(pCfg, "FileHandle", pThis->maTapFD[uInstance]); 2244 2244 RC_CHECK(); 2245 2245 } … … 2277 2277 if (!pszColon) 2278 2278 { 2279 hrc = networkAdapter->Detach();2279 hrc = aNetworkAdapter->Detach(); 2280 2280 H(); 2281 2281 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS, … … 2631 2631 # else 2632 2632 Bstr HifName; 2633 hrc = networkAdapter->COMGETTER(HostInterface)(HifName.asOutParam());2633 hrc = aNetworkAdapter->COMGETTER(HostInterface)(HifName.asOutParam()); 2634 2634 if(FAILED(hrc)) 2635 2635 {
Note:
See TracChangeset
for help on using the changeset viewer.