Changeset 72036 in vbox
- Timestamp:
- Apr 26, 2018 11:41:27 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122333
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/tarcmd.cpp
r72035 r72036 924 924 925 925 if (!RTFileExists(szFullTarget)) 926 return RTMsgErrorExitFailure("%s: Hardlink target not found (or not a file): %s", pszDst, szFullTarget , rc);926 return RTMsgErrorExitFailure("%s: Hardlink target not found (or not a file): %s", pszDst, szFullTarget); 927 927 928 928 /* … … 951 951 if (RT_FAILURE(rc)) 952 952 { 953 rcExit = RTMsgErrorExitFailure("%s: Error closing hardlinked file copy: %Rrc", pszDst, szFullTarget,rc);953 rcExit = RTMsgErrorExitFailure("%s: Error closing hardlinked file copy: %Rrc", pszDst, rc); 954 954 RTFileDelete(pszDst); 955 955 } … … 957 957 else 958 958 { 959 rcExit = RTMsgErrorExitFailure("%s: Failed copying hardlinked file %s: %Rrc", pszDst, szFullTarget, rc);959 rcExit = RTMsgErrorExitFailure("%s: Failed copying hardlinked file '%s': %Rrc", pszDst, szFullTarget, rc); 960 960 rc = RTFileClose(hDstFile); 961 961 RTFileDelete(pszDst);
Note:
See TracChangeset
for help on using the changeset viewer.