Changeset 43876 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Nov 15, 2012 1:44:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/tar.cpp
r39083 r43876 338 338 RTStrPrintf(pRecord->h.gid, sizeof(pRecord->h.gid), "%0.7o", gid); 339 339 rtTarSizeToRec(pRecord, cbSize); 340 RTStrPrintf(pRecord->h.mtime, sizeof(pRecord->h.mtime), "%0.11 o", mtime);340 RTStrPrintf(pRecord->h.mtime, sizeof(pRecord->h.mtime), "%0.11llo", mtime); 341 341 RTStrPrintf(pRecord->h.magic, sizeof(pRecord->h.magic), "ustar "); 342 342 RTStrPrintf(pRecord->h.uname, sizeof(pRecord->h.uname), "someone"); … … 1179 1179 /* Convert the time to an string. */ 1180 1180 char szModTime[RT_SIZEOFMEMB(RTTARRECORD, h.mtime)]; 1181 RTStrPrintf(szModTime, sizeof(szModTime), "%0.11 o", RTTimeSpecGetSeconds(pTime));1181 RTStrPrintf(szModTime, sizeof(szModTime), "%0.11llo", RTTimeSpecGetSeconds(pTime)); 1182 1182 1183 1183 /* Write it directly into the header */
Note:
See TracChangeset
for help on using the changeset viewer.