Changeset 59577 in vbox for trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
- Timestamp:
- Feb 4, 2016 2:18:36 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
r59268 r59577 1187 1187 * Thread function for the thread started in Appliance::readImpl() and Appliance::importImpl() 1188 1188 * and Appliance::writeImpl(). 1189 * This will in turn call Appliance::readFS() or Appliance::readS3() or Appliance::importFS() 1190 * or Appliance::importS3() or Appliance::writeFS() or Appliance::writeS3(). 1189 * 1190 * This will in turn call Appliance::readFS() or Appliance::importFS() or 1191 * Appliance::writeFS(). 1191 1192 * 1192 1193 * @param aThread … … 1212 1213 taskrc = pAppliance->i_readFS(task); 1213 1214 else if (task->locInfo.storageType == VFSType_S3) 1214 #ifdef VBOX_WITH_S31215 taskrc = pAppliance->i_readS3(task);1216 #else1217 1215 taskrc = VERR_NOT_IMPLEMENTED; 1218 #endif1219 1216 break; 1220 1217 … … 1223 1220 taskrc = pAppliance->i_importFS(task); 1224 1221 else if (task->locInfo.storageType == VFSType_S3) 1225 #ifdef VBOX_WITH_S31226 taskrc = pAppliance->i_importS3(task);1227 #else1228 1222 taskrc = VERR_NOT_IMPLEMENTED; 1229 #endif1230 1223 break; 1231 1224 … … 1234 1227 taskrc = pAppliance->i_writeFS(task); 1235 1228 else if (task->locInfo.storageType == VFSType_S3) 1236 #ifdef VBOX_WITH_S31237 taskrc = pAppliance->i_writeS3(task);1238 #else1239 1229 taskrc = VERR_NOT_IMPLEMENTED; 1240 #endif1241 1230 break; 1242 1231 }
Note:
See TracChangeset
for help on using the changeset viewer.