summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-08-21 09:52:53 +0200
committerMichał Górny <mgorny@gentoo.org>2023-08-21 10:59:23 +0200
commitdcba00efe53ae1a268078153373d3b3d7491d12c (patch)
tree8e1fa895ccb38a6704caad3583c7edd63644cddf /app-arch/libarchive/files
parentdev-python/mistletoe: Bump to 1.2.0 (diff)
downloadgentoo-dcba00efe53ae1a268078153373d3b3d7491d12c.tar.gz
gentoo-dcba00efe53ae1a268078153373d3b3d7491d12c.tar.bz2
gentoo-dcba00efe53ae1a268078153373d3b3d7491d12c.zip
app-arch/libarchive: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
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