Index: /trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp
===================================================================
--- /trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp	(revision 81289)
+++ /trunk/src/VBox/GuestHost/SharedClipboard/clipboard-transfers.cpp	(revision 81290)
@@ -1667,44 +1667,4 @@
     LogFlowFuncLeaveRC(rc);
     return rc;
-}
-
-/**
- * Translates an absolute path to a relative one.
- *
- * @returns Translated, allocated path on success, or NULL on failure.
- *          Must be free'd with RTStrFree().
- * @param   pszPath             Absolute path to translate.
- */
-static char *sharedClipboardPathTranslate(const char *pszPath)
-{
-    AssertPtrReturn(pszPath, NULL);
-
-    LogFlowFunc(("pszPath=%s\n", pszPath));
-
-    char *pszPathTranslated = NULL;
-
-    char *pszSrcPath = RTStrDup(pszPath);
-    if (pszSrcPath)
-    {
-        size_t cbSrcPathLen = RTPathStripTrailingSlash(pszSrcPath);
-        if (cbSrcPathLen)
-        {
-            char *pszFileName = RTPathFilename(pszSrcPath);
-            if (pszFileName)
-            {
-                Assert(pszFileName >= pszSrcPath);
-                size_t cchDstBase = pszFileName - pszSrcPath;
-
-                pszPathTranslated = RTStrDup(&pszSrcPath[cchDstBase]);
-
-                LogFlowFunc(("pszSrcPath=%s, pszFileName=%s -> pszPathTranslated=%s\n",
-                             pszSrcPath, pszFileName, pszPathTranslated));
-            }
-        }
-
-        RTStrFree(pszSrcPath);
-    }
-
-    return pszPathTranslated;
 }
 
Index: /trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-transfers.cpp
===================================================================
--- /trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-transfers.cpp	(revision 81289)
+++ /trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-transfers.cpp	(revision 81290)
@@ -2192,5 +2192,5 @@
  *
  * @returns VBox status code.
- * @param   uMode               Transfer mode to set.
+ * @param   fMode               Transfer mode to set.
  */
 int shclSvcTransferModeSet(uint32_t fMode)
