VirtualBox

Changeset 59567 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Feb 3, 2016 12:17:58 AM (9 years ago)
Author:
vboxsync
Message:

RTManifestSetAttr,RTManifestEntrySetAttr: Allow the attribute name to be NULL when there is a distinctive fType value given.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp

    r59565 r59567  
    15381538            /* Add the digest of the ovf to our verification manifest. */
    15391539            vrc = RTManifestEntrySetAttr(stack.hSrcDisksManifest, RTPathFilename(pTask->locInfo.strPath.c_str()),
    1540                                          m->fSha256 ? "SHA256" : "SHA1", m->strOVFSHADigest.c_str(),
     1540                                         NULL /*pszAttr*/, m->strOVFSHADigest.c_str(),
    15411541                                         m->fSha256 ? RTMANIFEST_ATTR_SHA256 : RTMANIFEST_ATTR_SHA1);
    15421542            if (RT_FAILURE(vrc))
     
    17971797        {
    17981798            /* Add the ovf file digest to the verification list. */
    1799             vrc = RTManifestEntrySetAttr(stack.hSrcDisksManifest, OVFfilename.c_str(), m->fSha256 ? "SHA256" : "SHA1",
     1799            vrc = RTManifestEntrySetAttr(stack.hSrcDisksManifest, OVFfilename.c_str(), NULL /*pszAttr*/,
    18001800                                         m->strOVFSHADigest.c_str(), m->fSha256 ? RTMANIFEST_ATTR_SHA256 : RTMANIFEST_ATTR_SHA1);
    18011801            if (RT_FAILURE(vrc))
     
    21522152                                               szDigest, sizeof(szDigest), &fType);
    21532153                if (RT_SUCCESS(vrc))
    2154                     vrc = RTManifestEntrySetAttr(hOvfManifest, pszOvfEntry,
    2155                                                  fType == RTMANIFEST_ATTR_SHA256 ? "SHA256" : "SHA1", szDigest, fType);
     2154                    vrc = RTManifestEntrySetAttr(hOvfManifest, pszOvfEntry, NULL /*pszAttr*/, szDigest, fType);
    21562155            }
    21572156            if (RT_SUCCESS(vrc))
     
    27372736        vrc = RTManifestEntrySetAttr(stack.hSrcDisksManifest,
    27382737                                     strSourceOVF.c_str(),
    2739                                      pStorage->fSha256 ? "SHA256" : "SHA1",
     2738                                     NULL /*pszAttr*/,
    27402739                                     pStorage->strDigest.c_str(),
    27412740                                     pStorage->fSha256 ? RTMANIFEST_ATTR_SHA256 : RTMANIFEST_ATTR_SHA1);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette