儲存庫 vbox 的更動 51713
- 時間撮記:
- 2014-6-24 下午02:45:44 (11 年 以前)
- svn:sync-xref-src-repo-rev:
- 94498
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp
r51696 r51713 74 74 const char * const *papszFiles; 75 75 } RTZIPUNZIPCMDOPS; 76 /** Pointer to the IPRT taroptions. */76 /** Pointer to the UNZIP options. */ 77 77 typedef RTZIPUNZIPCMDOPS *PRTZIPUNZIPCMDOPS; 78 78 79 79 /** 80 * Callback used by rtZip TarDoWithMembers80 * Callback used by rtZipUnzipDoWithMembers 81 81 * 82 82 * @returns rcExit or RTEXITCODE_FAILURE. 83 * @param pOpts The taroptions.84 * @param hVfsObj The tarobject to display83 * @param pOpts The Unzip options. 84 * @param hVfsObj The Unzip object to display 85 85 * @param pszName The name. 86 86 * @param rcExit The current exit code. … … 128 128 */ 129 129 uint32_t fOpen = RTFILE_O_READWRITE | RTFILE_O_DENY_WRITE | RTFILE_O_CREATE_REPLACE | RTFILE_O_ACCESS_ATTR_DEFAULT 130 | ( (RTFS_UNIX_IWUSR | RTFS_UNIX_IRUSR)<< RTFILE_O_CREATE_MODE_SHIFT);130 | (pUnixInfo->Attr.fMode << RTFILE_O_CREATE_MODE_SHIFT); 131 131 RTFILE hFile; 132 132 int rc = RTFileOpen(&hFile, pszDst, fOpen); … … 275 275 RTVfsIoStrmRelease(hVfsIos); 276 276 if (RT_FAILURE(rc)) 277 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to open tarfilesystem stream: %Rrc", rc);277 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to open pkzip filesystem stream: %Rrc", rc); 278 278 279 279 return RTEXITCODE_SUCCESS; … … 285 285 * 286 286 * @returns The appropriate exit code. 287 * @param pOpts The taroptions.287 * @param pOpts The Unzip options. 288 288 * @param pfnCallback The command specific callback. 289 289 */
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器