Copied from Debian. From: Santiago Vila Subject: zipinfo.c: Do not crash when hostver byte is >= 100 --- a/zipinfo.c +++ b/zipinfo.c @@ -2114,7 +2114,7 @@ else attribs[9] = (xattr & UNX_ISVTX)? 'T' : '-'; /* T==undefined */ - sprintf(&attribs[12], "%u.%u", hostver/10, hostver%10); + sprintf(&attribs[11], "%2u.%u", hostver/10, hostver%10); break; } /* end switch (hostnum: external attributes format) */ ref='/'>index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-pack-relocatable.sh
AgeCommit message (Expand)Author
2020-12-04tests: pack-relocatable: Ensure commands can run in the current namespace....Paul Garlick
2020-10-31pack: Relocatable wrapper leaves root available to child processes....Ludovic Courtès
2020-10-30guix: pack: Only wrap executable files....Eric Bavier
2020-09-28tests: Simplify shell exit status negation;...Eric Bavier
2020-07-28pack: "fakechroot" engine always creates its store....Ludovic Courtès
2020-07-28pack: "fakechroot" execution engine can load its audit module....Ludovic Courtès
2020-07-24pack: '-R' applies to propagated inputs too....Ludovic Courtès