Changeset 84975 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jun 26, 2020 3:39:06 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138853
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r84872 r84975 1281 1281 rc = VERR_NOT_SUPPORTED; 1282 1282 } 1283 else1284 LogFlowFunc(("Unable to query symlink info for '%s', rc=%Rrc\n", szPathReal, rc));1283 else 1284 LogFlowFunc(("Unable to query symlink info for '%s', rc=%Rrc\n", szPathReal, rc)); 1285 1285 } 1286 1286 else … … 1679 1679 if (mDest.isEmpty()) 1680 1680 { 1681 strErrorInfo = Utf8StrFmt(GuestSession::tr(" Destination must not be empty"));1681 strErrorInfo = Utf8StrFmt(GuestSession::tr("Guest destination must not be empty")); 1682 1682 rc = VERR_INVALID_PARAMETER; 1683 1683 } … … 1690 1690 Utf8Str strDst = mDest; 1691 1691 1692 LogFlowFunc((" Source:strSrc=%s, strDst=%s\n", strSrc.c_str(), strDst.c_str()));1692 LogFlowFunc(("strSrc=%s, strDst=%s\n", strSrc.c_str(), strDst.c_str())); 1693 1693 1694 1694 if (strSrc.isEmpty()) 1695 1695 { 1696 strErrorInfo = Utf8StrFmt(GuestSession::tr(" Source entry must not be empty"));1696 strErrorInfo = Utf8StrFmt(GuestSession::tr("Host source entry must not be empty")); 1697 1697 rc = VERR_INVALID_PARAMETER; 1698 1698 break; … … 1703 1703 if (RT_FAILURE(rc)) 1704 1704 { 1705 strErrorInfo = Utf8StrFmt(GuestSession::tr("No such sourcefile/directory: %s"), strSrc.c_str());1705 strErrorInfo = Utf8StrFmt(GuestSession::tr("No such host file/directory: %s"), strSrc.c_str()); 1706 1706 break; 1707 1707 } … … 1711 1711 if (itSrc->enmType != FsObjType_Directory) 1712 1712 { 1713 strErrorInfo = Utf8StrFmt(GuestSession::tr(" Source is not a file: %s"), strSrc.c_str());1713 strErrorInfo = Utf8StrFmt(GuestSession::tr("Host source is not a file: %s"), strSrc.c_str()); 1714 1714 rc = VERR_NOT_A_FILE; 1715 1715 break; … … 1720 1720 if (itSrc->enmType == FsObjType_Directory) 1721 1721 { 1722 strErrorInfo = Utf8StrFmt(GuestSession::tr(" Source is not a directory: %s"), strSrc.c_str());1722 strErrorInfo = Utf8StrFmt(GuestSession::tr("Host source is not a directory: %s"), strSrc.c_str()); 1723 1723 rc = VERR_NOT_A_DIRECTORY; 1724 1724 break; … … 1744 1744 { 1745 1745 delete pFsList; 1746 strErrorInfo = Utf8StrFmt(GuestSession::tr("Error adding source '%s' to list: %Rrc"), strSrc.c_str(), rc); 1746 strErrorInfo = Utf8StrFmt(GuestSession::tr("Error adding host source '%s' to list: %Rrc"), 1747 strSrc.c_str(), rc); 1747 1748 break; 1748 1749 }
Note:
See TracChangeset
for help on using the changeset viewer.