VirtualBox

Changeset 96617 in vbox


Ignore:
Timestamp:
Sep 6, 2022 8:31:42 PM (2 years ago)
Author:
vboxsync
Message:

Main: whitespace/nits.

Location:
trunk/src/VBox/Main/src-client
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r96407 r96617  
    35993599        HRESULT hrc;
    36003600        if (source.enmType == FsObjType_Directory)
    3601         {
    36023601            hrc = GuestSession::i_directoryCopyFlagFromStr(strFlags, &source.Type.Dir.fCopyFlags);
    3603         }
    36043602        else if (source.enmType == FsObjType_File)
    36053603            hrc = GuestSession::i_fileCopyFlagFromStr(strFlags, &source.Type.File.fCopyFlags);
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r96407 r96617  
    13391339        }
    13401340        else if (RTFS_IS_FILE(objInfo.Attr.fMode))
    1341         {
    13421341            vrc = VERR_IS_A_FILE;
    1343         }
    13441342        else if (RTFS_IS_SYMLINK(objInfo.Attr.fMode))
    1345         {
    13461343            vrc = VERR_IS_A_SYMLINK;
    1347         }
    13481344        else
    13491345            vrc = VERR_NOT_SUPPORTED;
     
    16051601        const bool     fFollowSymlinks   = true; /** @todo */
    16061602        const uint32_t fDirMode          = 0700; /** @todo Play safe by default; implement ACLs. */
    1607               uint32_t fDirCreate        = 0;
     1603        uint32_t      fDirCreate        = 0;
    16081604
    16091605        if (!fFollowSymlinks)
     
    16211617        }
    16221618
    1623         char szPath[RTPATH_MAX];
    1624 
    16251619        FsEntries::const_iterator itEntry = pList->mVecEntries.begin();
    16261620        while (itEntry != pList->mVecEntries.end())
     
    16361630            if (pList->mSourceSpec.enmType == FsObjType_Directory)
    16371631            {
     1632                char szPath[RTPATH_MAX];
     1633
    16381634                /* Build the source path on the guest. */
    16391635                vrc = RTStrCopy(szPath, sizeof(szPath), pList->mSrcRootAbs.c_str());
     
    17441740    Utf8Str strErrorInfo;
    17451741
    1746     /**
     1742    /*
    17471743     * Note: We need to build up the file/directory here instead of GuestSessionTaskCopyTo::Run
    17481744     *       because the caller expects a ready-for-operation progress object on return.
     
    18081804                {
    18091805                    if (itSrc->enmType == FsObjType_Directory)
    1810                     {
    18111806                        vrc = pFsList->AddDirFromHost(strSrc);
    1812                     }
    18131807                    else
    18141808                        vrc = pFsList->AddEntryFromHost(RTPathFilename(strSrc.c_str()), &srcFsObjInfo);
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