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) */ x : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/logging.scm
AgeCommit message (Expand)Author
2020-07-24gnu: spdlog: Update to 1.7.0....Marius Bakke
2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès
2020-06-27gnu: spdlog: Update to 1.6.1....Marius Bakke
2020-03-21Merge branch 'master' into core-updatesMarius Bakke
2020-03-19gnu: spdlog: Update to 1.5.0....Brendan Tildesley
2020-03-14gnu: log4cpp: Fix build with glibc 2.31....Marius Bakke
2019-11-11gnu: multitail: Update to 6.5.0....Tobias Geerinckx-Rice
2019-11-10gnu: Add 'file-name' where appropriate....Efraim Flashner