Description: Patch to fix filename length calculation when writing mtree archives. Author: Dave Reisner Origin: upstream --- a/libarchive/archive_write_set_format_mtree.c +++ b/libarchive/archive_write_set_format_mtree.c @@ -1855,9 +1855,9 @@ return (ret); } - /* Make a basename from dirname and slash */ + /* Make a basename from file->parentdir.s and slash */ *slash = '\0'; - file->parentdir.length = slash - dirname; + file->parentdir.length = slash - file->parentdir.s; archive_strcpy(&(file->basename), slash + 1); return (ret); } 'hidden' name='id' value='d954d7682da5e32e1ea4b744d1bd1591829eca68'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/wget.scm
AgeCommit message (Expand)Author
2020-09-05Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner
2020-09-01gnu: wgetpaste: Update bpaste URL & regular expressions....* gnu/packages/wget.scm (wgetpaste)[source]: Add patch. * gnu/packages/patches/wgetpaste-update-bpaste.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Update to 2.30....* gnu/packages/wget.scm (wgetpaste): Update to 2.30. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Use HTTPS home page....* gnu/packages/wget.scm (wgetpaste)[source, home-page]: Use HTTPS. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Fix historical confusion....* gnu/packages/wget.scm (wgetpaste)[arguments]: Fix the reversed substitution and clarify its purpose. Tobias Geerinckx-Rice