Changeset 5087 in vbox for trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
- Timestamp:
- Sep 28, 2007 10:18:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r4926 r5087 822 822 * What is a file now can be a directory when you open it. */ 823 823 rc = RTPathQueryInfo (pszFullPath, &info, RTFSOBJATTRADD_NOTHING); 824 Log 2(("RTPathQueryInfo returned %Vrc\n", rc));824 LogFlow(("RTPathQueryInfo returned %Vrc\n", rc)); 825 825 826 826 if (BIT_FLAG(pParms->CreateFlags, SHFL_CF_LOOKUP)) 827 827 { 828 Log 2(("SHFL_CF_LOOKUP\n"));828 LogFlow(("SHFL_CF_LOOKUP\n")); 829 829 /* Client just wants to know if the object exists. */ 830 830 switch (rc) … … 923 923 if (rc == VERR_FILE_NOT_FOUND) 924 924 { 925 Log 2(("pParms->CreateFlags = %x\n", pParms->CreateFlags));925 LogFlow(("pParms->CreateFlags = %x\n", pParms->CreateFlags)); 926 926 927 927 rc = VINF_SUCCESS; … … 1576 1576 rc = RTFileLock(pHandle->file.Handle, fRTLock, offset, length); 1577 1577 if (rc != VINF_SUCCESS) 1578 Log(("RTFile Unlock %RTfile %RX64 %RX64 failed with %Rrc\n", pHandle->file.Handle, offset, length, rc));1578 Log(("RTFileLock %RTfile %RX64 %RX64 failed with %Rrc\n", pHandle->file.Handle, offset, length, rc)); 1579 1579 1580 1580 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.