Changeset 57210 in vbox
- Timestamp:
- Aug 6, 2015 9:55:33 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r51976 r57210 275 275 if (RT_FAILURE(rc)) 276 276 { 277 LogRel(("SharedFolders : %Rrc loading %d [%ls] -> [%s]\n",277 LogRel(("SharedFolders host service: %Rrc loading %d [%ls] -> [%s]\n", 278 278 rc, i, pMapName->String.ucs2, pszFolderName)); 279 279 } … … 1302 1302 { 1303 1303 Log(("SharedFolders host service: svcCall: SHFL_FN_ADD_MAPPING\n")); 1304 LogRel(("SharedFolders host service: adding host mapping\n"));1304 LogRel(("SharedFolders host service: Adding host mapping\n")); 1305 1305 /* Verify parameter count and types. */ 1306 1306 if ( (cParms != SHFL_CPARMS_ADD_MAPPING) … … 1354 1354 } 1355 1355 if (RT_FAILURE(rc)) 1356 LogRel(("SharedFolders host service: adding host mapping failed with rc=%Rrc\n", rc));1356 LogRel(("SharedFolders host service: Adding host mapping failed with rc=%Rrc\n", rc)); 1357 1357 break; 1358 1358 } … … 1361 1361 { 1362 1362 Log(("SharedFolders host service: svcCall: SHFL_FN_REMOVE_MAPPING\n")); 1363 LogRel(("SharedFolders host service: removing host mapping '%ls'\n",1363 LogRel(("SharedFolders host service: Removing host mapping '%ls'\n", 1364 1364 ((SHFLSTRING *)paParms[0].u.pointer.addr)->String.ucs2)); 1365 1365 … … 1397 1397 } 1398 1398 if (RT_FAILURE(rc)) 1399 LogRel(("SharedFolders host service: removing host mapping failed with rc=%Rrc\n", rc));1399 LogRel(("SharedFolders host service: Removing host mapping failed with rc=%Rrc\n", rc)); 1400 1400 break; 1401 1401 } … … 1454 1454 if (!VALID_PTR(ptable)) 1455 1455 { 1456 LogRelFunc(("SharedFolders host service: bad value of ptable (%p)\n", ptable));1456 LogRelFunc(("SharedFolders host service: Bad value of ptable (%p)\n", ptable)); 1457 1457 rc = VERR_INVALID_PARAMETER; 1458 1458 } … … 1465 1465 || ptable->u32Version != VBOX_HGCM_SVC_VERSION) 1466 1466 { 1467 LogRelFunc(("SharedFolders host service: version mismatch while loading: ptable->cbSize = %u (should be %u), ptable->u32Version = 0x%08X (should be 0x%08X)\n",1467 LogRelFunc(("SharedFolders host service: Version mismatch while loading: ptable->cbSize = %u (should be %u), ptable->u32Version = 0x%08X (should be 0x%08X)\n", 1468 1468 ptable->cbSize, sizeof (VBOXHGCMSVCFNTABLE), ptable->u32Version, VBOX_HGCM_SVC_VERSION)); 1469 1469 rc = VERR_VERSION_MISMATCH;
Note:
See TracChangeset
for help on using the changeset viewer.