Changeset 64155 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Oct 5, 2016 12:56:10 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r64145 r64155 4070 4070 char *pszDriverDetach = NULL; 4071 4071 if ( !fHotplug 4072 && (enmBus == StorageBus_SATA || enmBus == StorageBus_SAS || enmBus == StorageBus_SCSI)) 4072 && ( (enmBus == StorageBus_SATA && enmDevType == DeviceType_DVD) 4073 || enmBus == StorageBus_SAS 4074 || enmBus == StorageBus_SCSI)) 4073 4075 { 4074 4076 /* Get the current attached driver we have to detach. */ … … 4117 4119 * even for DVD devices) or if there is a hotplug event which rips out the complete device. 4118 4120 */ 4119 if (enmBus == StorageBus_IDE || enmBus == StorageBus_Floppy || fHotplug) 4121 if ( fHotplug 4122 || enmBus == StorageBus_IDE 4123 || enmBus == StorageBus_Floppy 4124 || (enmBus == StorageBus_SATA && enmDevType != DeviceType_DVD)) 4120 4125 { 4121 4126 fAddLun = true;
Note:
See TracChangeset
for help on using the changeset viewer.