VirtualBox

Changeset 6832 in vbox for trunk/src/VBox/HostServices


Ignore:
Timestamp:
Feb 6, 2008 3:24:35 PM (17 years ago)
Author:
vboxsync
Message:

Eliminated tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r6831 r6832  
    631631    /* Open or create a file. */
    632632    unsigned fOpen = 0;
    633         bool fNoError = false;
     633    bool fNoError = false;
    634634
    635635    int rc = vbsfConvertFileOpenFlags(pParms->CreateFlags, &fOpen);
     
    667667            pParms->Result = SHFL_FILE_EXISTS;
    668668
    669                         /* This actually isn't an error, because the file simply already exists,
    670                            so correct the rc before return later, to make the driver (VBoxSF.sys) happy. */
    671                         fNoError = true;       
     669            /* This actually isn't an error, because the file simply already exists,
     670               so correct the rc before return later, to make the driver (VBoxSF.sys) happy. */
     671            fNoError = true;   
    672672            break;
    673673        default:
     
    746746    }
    747747
    748         /* Report the driver that all is okay, we're done here */
    749         if (fNoError)
    750                 rc = VINF_SUCCESS;
     748    /* Report the driver that all is okay, we're done here */
     749    if (fNoError)
     750        rc = VINF_SUCCESS;
    751751
    752752    LogFlow(("vbsfOpenFile: rc = %Vrc\n", rc));
     
    810810        if (   RT_SUCCESS(rc)
    811811            || (SHFL_CF_ACT_OPEN_IF_EXISTS == BIT_FLAG(pParms->CreateFlags, SHFL_CF_ACT_MASK_IF_EXISTS))
    812                         || (SHFL_FILE_EXISTS == pParms->Result))        /* Call of RTDirCreate() avbove failed, because already existing? */
     812            || (SHFL_FILE_EXISTS == pParms->Result))    /* Call of RTDirCreate() avbove failed, because already existing? */
    813813        {
    814814            /* Open the directory now */
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