summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch')
-rw-r--r--meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch b/meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch
deleted file mode 100644
index b5465a3385..0000000000
--- a/meta/recipes-extended/libarchive/libarchive/0007-Ignore-ENOSYS-error-when-setting-up-xattrs.-Closes-5.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-libarchive: Ignore ENOSYS error when setting up xattrs. (Closes: #588925)
-
-Modestas Vainius found out that HPPA returns errno ENOSYS
-on listxattrs. Currently, ENOTSUP is ignored so we'll do the
-same for ENOSYS as well.
-
-For full debug info about this see Modestas Vainius awesome
-report at:
-
-http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=588925#10
-
-Upstream-Status: Pending
-
-Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-
-diff --git a/libarchive/archive_read_disk_entry_from_file.c b/libarchive/archive_read_disk_entry_from_file.c
-index 27671df..c49e755 100644
---- a/libarchive/archive_read_disk_entry_from_file.c
-+++ b/libarchive/archive_read_disk_entry_from_file.c
-@@ -398,7 +398,7 @@ setup_xattrs(struct archive_read_disk *a,
- list_size = listxattr(path, NULL, 0);
-
- if (list_size == -1) {
-- if (errno == ENOTSUP)
-+ if (errno == ENOTSUP || errno == ENOSYS)
- return (ARCHIVE_OK);
- archive_set_error(&a->archive, errno,
- "Couldn't list extended attributes");
---
-1.7.1
-