summaryrefslogtreecommitdiff
path: root/app-arch/libarchive/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-08-21 15:44:13 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-08-21 15:44:13 +0100
commit7d52991b5dce3a07be15d3cbbf06abb3fc08cb9c (patch)
treed01066a68df91636e424d940eab767df96d6f51a /app-arch/libarchive/files
parent28e28adc401b344fa5c230e2609c542873c372f8 (diff)
gentoo auto-resync : 21:08:2023 - 15:44:13
Diffstat (limited to 'app-arch/libarchive/files')
-rw-r--r--app-arch/libarchive/files/libarchive-3.7.0-f_namemax-fix.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/app-arch/libarchive/files/libarchive-3.7.0-f_namemax-fix.patch b/app-arch/libarchive/files/libarchive-3.7.0-f_namemax-fix.patch
deleted file mode 100644
index 36ed70fca44b..000000000000
--- a/app-arch/libarchive/files/libarchive-3.7.0-f_namemax-fix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From: https://github.com/libarchive/libarchive/commit/bd074c2531e867078788fe8539376c31119e4e55.patch
-From: Wong Hoi Sing Edison <hswong3i@gmail.com>
-Date: Wed, 19 Jul 2023 16:59:32 +0800
-Subject: [PATCH] Replace `svfs.f_namelen` with `svfs.f_namemax` (#1924)
-
-The equivalent for `f_namelen` in struct statvfs is `f_namemax`.
-
-Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
---- a/libarchive/archive_read_disk_posix.c
-+++ b/libarchive/archive_read_disk_posix.c
-@@ -1866,7 +1866,7 @@ setup_current_filesystem(struct archive_read_disk *a)
- #if defined(USE_READDIR_R)
- /* Set maximum filename length. */
- #if defined(HAVE_STATVFS)
-- t->current_filesystem->name_max = svfs.f_namelen;
-+ t->current_filesystem->name_max = svfs.f_namemax;
- #else
- t->current_filesystem->name_max = sfs.f_namelen;
- #endif