Changeset 20719 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 19, 2009 12:08:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r20690 r20719 3210 3210 */ 3211 3211 PPDMIBASE pBase; 3212 const char * cszAdapterName = "pcnet";3212 const char *pszAdapterName = "pcnet"; 3213 3213 #ifdef VBOX_WITH_E1000 3214 3214 /* … … 3222 3222 adapterType == NetworkAdapterType_I82543GC || 3223 3223 adapterType == NetworkAdapterType_I82545EM) 3224 cszAdapterName = "e1000";3224 pszAdapterName = "e1000"; 3225 3225 #endif 3226 int vrc = PDMR3QueryDeviceLun (mpVM, cszAdapterName,3226 int vrc = PDMR3QueryDeviceLun (mpVM, pszAdapterName, 3227 3227 (unsigned) ulInstance, 0, &pBase); 3228 3228 ComAssertRC (vrc); … … 3249 3249 meAttachmentType[ulInstance] == NetworkAttachmentType_Null))) 3250 3250 { 3251 rc = doNetworkAdapterChange( cszAdapterName,3251 rc = doNetworkAdapterChange(pszAdapterName, 3252 3252 ulInstance, 0, 3253 3253 eAttachmentType,
Note:
See TracChangeset
for help on using the changeset viewer.