Changeset 75312 in vbox
- Timestamp:
- Nov 7, 2018 3:44:58 PM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
include/ApplianceImplPrivate.h (modified) (1 diff)
-
src-server/ApplianceImplExport.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ApplianceImplPrivate.h
r73929 r75312 239 239 Utf8Str strBootDiskSize; 240 240 Utf8Str strBucketId; 241 Utf8Str str VCN;241 Utf8Str strSubnet; 242 242 bool fPublicIP; 243 243 Utf8Str strUserId; -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r75038 r75312 961 961 LogRel(("OCI bucket name: %s\n", m->m_OciExportData.strBucketId.c_str())); 962 962 963 std::list<VirtualSystemDescriptionEntry*> vcn=964 vsdescThis->i_findByType(VirtualSystemDescriptionType_CloudOCI VCN);965 if ( vcn.empty())963 std::list<VirtualSystemDescriptionEntry*> subnet = 964 vsdescThis->i_findByType(VirtualSystemDescriptionType_CloudOCISubnet); 965 if (subnet.empty()) 966 966 throw rc = setError(VBOX_E_OBJECT_NOT_FOUND, 967 tr("OCI: VCNwasn't found"));968 969 m->m_OciExportData.str VCN = vcn.front()->strVBoxCurrent;970 LogRel(("OCI VCN name: %s\n", m->m_OciExportData.strVCN.c_str()));967 tr("OCI: Subnet wasn't found")); 968 969 m->m_OciExportData.strSubnet = subnet.front()->strVBoxCurrent; 970 LogRel(("OCI Subnet name: %s\n", m->m_OciExportData.strSubnet.c_str())); 971 971 972 972 std::list<VirtualSystemDescriptionEntry*> publicIP =
Note:
See TracChangeset
for help on using the changeset viewer.

