Changeset 29901 in vbox for trunk/src/VBox/Main/ApplianceImplImport.cpp
- Timestamp:
- May 31, 2010 12:53:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImplImport.cpp
r29894 r29901 671 671 /* Create the SHA1 sum of the OVF file for later validation */ 672 672 char *pszDigest; 673 int vrc = RTSha1Digest(locInfo.strPath.c_str(), &pszDigest );673 int vrc = RTSha1Digest(locInfo.strPath.c_str(), &pszDigest, NULL, NULL); 674 674 if (RT_FAILURE(vrc)) 675 675 throw setError(VBOX_E_FILE_ERROR, … … 1065 1065 { 1066 1066 char* pszDigest; 1067 vrc = RTSha1Digest((*it1).c_str(), &pszDigest );1067 vrc = RTSha1Digest((*it1).c_str(), &pszDigest, NULL, NULL); 1068 1068 pTestList[i].pszTestFile = (char*)(*it1).c_str(); 1069 1069 pTestList[i].pszTestDigest = pszDigest;
Note:
See TracChangeset
for help on using the changeset viewer.