Changeset 8439 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Apr 28, 2008 7:35:29 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30294
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r8423 r8439 358 358 " [-nictype<1-N> Am79C970A|Am79C973" 359 359 #ifdef VBOX_WITH_E1000 360 "|82540EM "360 "|82540EM|82543GC" 361 361 #endif 362 362 "]\n" … … 1343 1343 case NetworkAdapterType_I82540EM: 1344 1344 strNICType = "82540EM"; 1345 break; 1346 case NetworkAdapterType_I82543GC: 1347 strNICType = "82543GC"; 1345 1348 break; 1346 1349 #endif … … 4980 4983 CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_I82540EM), 1); 4981 4984 } 4985 else if (strcmp(nictype[n], "82543GC") == 0) 4986 { 4987 CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_I82543GC), 1); 4988 } 4982 4989 #endif 4983 4990 else
Note:
See TracChangeset
for help on using the changeset viewer.