Changeset 35284 in vbox for trunk/src/VBox/Main/ApplianceImpl.cpp
- Timestamp:
- Dec 21, 2010 8:49:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r33698 r35284 932 932 taskrc = pAppliance->readFS(task.get()); 933 933 else if (task->locInfo.storageType == VFSType_S3) 934 #ifdef VBOX_WITH_S3 934 935 taskrc = pAppliance->readS3(task.get()); 936 #else 937 taskrc = VERR_NOT_IMPLEMENTED; 938 #endif 935 939 break; 936 940 … … 939 943 taskrc = pAppliance->importFS(task.get()); 940 944 else if (task->locInfo.storageType == VFSType_S3) 945 #ifdef VBOX_WITH_S3 941 946 taskrc = pAppliance->importS3(task.get()); 947 #else 948 taskrc = VERR_NOT_IMPLEMENTED; 949 #endif 942 950 break; 943 951 … … 946 954 taskrc = pAppliance->writeFS(task.get()); 947 955 else if (task->locInfo.storageType == VFSType_S3) 956 #ifdef VBOX_WITH_S3 948 957 taskrc = pAppliance->writeS3(task.get()); 958 #else 959 taskrc = VERR_NOT_IMPLEMENTED; 960 #endif 949 961 break; 950 962 }
Note:
See TracChangeset
for help on using the changeset viewer.