Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix: Extract filename for manifest.tags. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | jan-manifest-tags |
Files: | files | file ages | folders |
SHA1: |
185669ce21dab6bf1f227fdb977c61d9 |
User & Date: | jan 2016-01-04 00:22:03 |
Context
2016-01-04
| ||
00:28 | Add manifest.tags to generated zips, and decouple manifest and manifest.uuid. ... (check-in: aed6fe53 user: jan tags: jan-manifest-tags) | |
00:22 | Fix: Extract filename for manifest.tags. ... (check-in: 185669ce user: jan tags: jan-manifest-tags) | |
00:19 | Added a missing finalize. ... (check-in: 6a56db89 user: jan tags: jan-manifest-tags) | |
Changes
Changes to src/tar.c.
︙ | ︙ | |||
517 518 519 520 521 522 523 524 525 526 527 528 529 530 | } if( flg & MFESTFLG_TAGS ){ Blob tagslist; blob_zero(&tagslist); get_checkin_taglist(rid, &tagslist); blob_resize(&filename, nPrefix); blob_append(&filename, "manifest.tags", -1); tar_add_file(zName, &tagslist, 0, mTime); blob_reset(&tagslist); } } manifest_file_rewind(pManifest); while( (pFile = manifest_file_next(pManifest,0))!=0 ){ int fid = uuid_to_rid(pFile->zUuid, 0); | > | 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | } if( flg & MFESTFLG_TAGS ){ Blob tagslist; blob_zero(&tagslist); get_checkin_taglist(rid, &tagslist); blob_resize(&filename, nPrefix); blob_append(&filename, "manifest.tags", -1); zName = blob_str(&filename); tar_add_file(zName, &tagslist, 0, mTime); blob_reset(&tagslist); } } manifest_file_rewind(pManifest); while( (pFile = manifest_file_next(pManifest,0))!=0 ){ int fid = uuid_to_rid(pFile->zUuid, 0); |
︙ | ︙ |