Changeset 36527 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
- Timestamp:
- Apr 4, 2011 1:16:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r33540 r36527 256 256 257 257 char *pszAbsFilePath; 258 if (strOvfFilename.startsWith("S3://", iprt::MiniString::CaseInsensitive) ||259 strOvfFilename.startsWith("SunCloud://", iprt::MiniString::CaseInsensitive) ||260 strOvfFilename.startsWith("webdav://", iprt::MiniString::CaseInsensitive))258 if (strOvfFilename.startsWith("S3://", RTCString::CaseInsensitive) || 259 strOvfFilename.startsWith("SunCloud://", RTCString::CaseInsensitive) || 260 strOvfFilename.startsWith("webdav://", RTCString::CaseInsensitive)) 261 261 pszAbsFilePath = RTStrDup(strOvfFilename.c_str()); 262 262 else … … 928 928 929 929 char *pszAbsFilePath = 0; 930 if (strOutputFile.startsWith("S3://", iprt::MiniString::CaseInsensitive) ||931 strOutputFile.startsWith("SunCloud://", iprt::MiniString::CaseInsensitive) ||932 strOutputFile.startsWith("webdav://", iprt::MiniString::CaseInsensitive))930 if (strOutputFile.startsWith("S3://", RTCString::CaseInsensitive) || 931 strOutputFile.startsWith("SunCloud://", RTCString::CaseInsensitive) || 932 strOutputFile.startsWith("webdav://", RTCString::CaseInsensitive)) 933 933 pszAbsFilePath = RTStrDup(strOutputFile.c_str()); 934 934 else
Note:
See TracChangeset
for help on using the changeset viewer.