Changeset 24546 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 10, 2009 1:24:50 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r24511 r24546 3178 3178 #ifdef VBOX_WITH_VIRTIO 3179 3179 case NetworkAdapterType_Virtio: 3180 pszAdapterName = "virtio ";3180 pszAdapterName = "virtio-net"; 3181 3181 break; 3182 3182 #endif -
trunk/src/VBox/Main/ConsoleImpl2.cpp
r24416 r24546 1197 1197 case NetworkAdapterType_Virtio: 1198 1198 pDev = pDevVirtioNet; 1199 pszAdapterName = "virtio ";1199 pszAdapterName = "virtio-net"; 1200 1200 break; 1201 1201 #endif /* VBOX_WITH_VIRTIO */ -
trunk/src/VBox/Main/xml/Settings.cpp
r24538 r24546 1334 1334 else if (strTemp == "82545EM") 1335 1335 nic.type = NetworkAdapterType_I82545EM; 1336 else if (strTemp == "virtio ")1336 else if (strTemp == "virtio-net") 1337 1337 nic.type = NetworkAdapterType_Virtio; 1338 1338 else … … 2654 2654 case NetworkAdapterType_I82543GC: pcszType = "82543GC"; break; 2655 2655 case NetworkAdapterType_I82545EM: pcszType = "82545EM"; break; 2656 case NetworkAdapterType_Virtio: pcszType = "virtio "; break;2656 case NetworkAdapterType_Virtio: pcszType = "virtio-net"; break; 2657 2657 default: /*case NetworkAdapterType_Am79C970A:*/ pcszType = "Am79C970A"; break; 2658 2658 }
Note:
See TracChangeset
for help on using the changeset viewer.