diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2020-06-12 23:44:23 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2020-06-12 23:44:23 +0000 |
commit | 9e4610f3f6ee6c60d3ce10f3b9e97abb22290fc4 (patch) | |
tree | 77616f60907f405b4bc56c06cbb08c551f4c6d2a /system/unzip/20-unzip-uidgid-fix.patch | |
parent | 6f7d579334d6ef02a463c77d612d8ed8e0fe5160 (diff) | |
parent | a44b1ab6ad91b2ad5780e67cae3065648c0a78a8 (diff) | |
download | packages-9e4610f3f6ee6c60d3ce10f3b9e97abb22290fc4.tar.gz packages-9e4610f3f6ee6c60d3ce10f3b9e97abb22290fc4.tar.bz2 packages-9e4610f3f6ee6c60d3ce10f3b9e97abb22290fc4.tar.xz packages-9e4610f3f6ee6c60d3ce10f3b9e97abb22290fc4.zip |
Merge branch 'debian-unzip' into 'master'
[RFC] system/unzip: change upstream to Debian (#123)
See merge request adelie/packages!413
Diffstat (limited to 'system/unzip/20-unzip-uidgid-fix.patch')
-rw-r--r-- | system/unzip/20-unzip-uidgid-fix.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/system/unzip/20-unzip-uidgid-fix.patch b/system/unzip/20-unzip-uidgid-fix.patch deleted file mode 100644 index 3a308990e..000000000 --- a/system/unzip/20-unzip-uidgid-fix.patch +++ /dev/null @@ -1,29 +0,0 @@ -From: sms -Subject: Restore uid and gid information when requested -Bug-Debian: http://bugs.debian.org/689212 -X-Debian-version: 6.0-8 - ---- a/process.c -+++ b/process.c -@@ -2904,7 +2904,7 @@ - #ifdef IZ_HAVE_UXUIDGID - if (eb_len >= EB_UX3_MINLEN - && z_uidgid != NULL -- && (*((EB_HEADSIZE + 0) + ef_buf) == 1) -+ && (*((EB_HEADSIZE + 0) + ef_buf) == 1)) - /* only know about version 1 */ - { - uch uid_size; -@@ -2916,10 +2916,10 @@ - flags &= ~0x0ff; /* ignore any previous UNIX field */ - - if ( read_ux3_value((EB_HEADSIZE + 2) + ef_buf, -- uid_size, z_uidgid[0]) -+ uid_size, &z_uidgid[0]) - && - read_ux3_value((EB_HEADSIZE + uid_size + 3) + ef_buf, -- gid_size, z_uidgid[1]) ) -+ gid_size, &z_uidgid[1]) ) - { - flags |= EB_UX2_VALID; /* signal success */ - } |