aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-fs/cifs-utils/files')
-rw-r--r--net-fs/cifs-utils/files/cifs-utils-6.7-heimdal.patch27
-rw-r--r--net-fs/cifs-utils/files/cifs-utils-6.7-musl-missing-headers.patch25
-rw-r--r--net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch29
3 files changed, 0 insertions, 81 deletions
diff --git a/net-fs/cifs-utils/files/cifs-utils-6.7-heimdal.patch b/net-fs/cifs-utils/files/cifs-utils-6.7-heimdal.patch
deleted file mode 100644
index f8fea48f..00000000
--- a/net-fs/cifs-utils/files/cifs-utils-6.7-heimdal.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-https://bugs.gentoo.org/612584
-
---- cifs-utils-6.7/cifs.upcall.c
-+++ cifs-utils-6.7/cifs.upcall.c
-@@ -75,11 +75,13 @@
- #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
- #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
- #define KRB5_KEY_DATA_CAST void
-+#define KRB5_FREE_STRING(c,k) krb5_xfree(k)
- #else /* MIT */
- #define KRB5_KEY_TYPE(k) ((k)->enctype)
- #define KRB5_KEY_LENGTH(k) ((k)->length)
- #define KRB5_KEY_DATA(k) ((k)->contents)
- #define KRB5_KEY_DATA_CAST krb5_octet
-+#define KRB5_FREE_STRING(c,k) krb5_free_string(c,k)
- #endif
-
- #ifdef HAVE_LIBCAP_NG
-@@ -358,7 +360,7 @@
- syslog(LOG_DEBUG, "%s: krb5_cc_get_full_name failed: %d\n", __func__, ret);
- } else {
- syslog(LOG_DEBUG, "%s: default ccache is %s\n", __func__, cachename);
-- krb5_free_string(context, cachename);
-+ KRB5_FREE_STRING(context, cachename);
- }
-
- if (!get_tgt_time(cc)) {
diff --git a/net-fs/cifs-utils/files/cifs-utils-6.7-musl-missing-headers.patch b/net-fs/cifs-utils/files/cifs-utils-6.7-musl-missing-headers.patch
deleted file mode 100644
index cfb54e28..00000000
--- a/net-fs/cifs-utils/files/cifs-utils-6.7-musl-missing-headers.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -Naur cifs-utils-6.7.orig/getcifsacl.c cifs-utils-6.7/getcifsacl.c
---- cifs-utils-6.7.orig/getcifsacl.c 2017-03-02 16:51:05.000000000 -0000
-+++ cifs-utils-6.7/getcifsacl.c 2019-05-11 14:18:04.522455988 -0000
-@@ -35,6 +35,9 @@
- #include <limits.h>
- #include <ctype.h>
- #include <sys/xattr.h>
-+#include <linux/limits.h>
-+#include <endian.h>
-+
- #include "cifsacl.h"
- #include "idmap_plugin.h"
-
-diff -Naur cifs-utils-6.7.orig/setcifsacl.c cifs-utils-6.7/setcifsacl.c
---- cifs-utils-6.7.orig/setcifsacl.c 2017-03-02 16:51:05.000000000 -0000
-+++ cifs-utils-6.7/setcifsacl.c 2019-05-11 14:17:58.285761823 -0000
-@@ -35,6 +35,8 @@
- #include <limits.h>
- #include <ctype.h>
- #include <sys/xattr.h>
-+#include <linux/limits.h>
-+#include <endian.h>
-
- #include "cifsacl.h"
- #include "idmap_plugin.h"
diff --git a/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch b/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch
deleted file mode 100644
index 7e341863..00000000
--- a/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-https://bugs.gentoo.org/show_bug.cgi?id=612018
-
-From: Thomas Witt <pyromaniac@exherbo.org>
-Date: Wed, 15 Mar 2017 20:20:44 +0000 (+0000)
-Subject: mount.cifs: Remove data_blob.h include
-X-Git-Url: https://git.samba.org/?p=cifs-utils.git;a=commitdiff_plain;h=272d523a57a4e8791d625a479128613be5e401f5
-
-mount.cifs: Remove data_blob.h include
-
-data_blob.h includes talloc.h from libtalloc, but that is only marked as
-a dependency for cifs.upcall. No symbols from that header are used by
-cifs.mount, so remove it to avoid the libtalloc dependency
-
-Signed-off-by: Thomas Witt <pyromaniac@exherbo.org>
----
-
-diff --git a/mount.cifs.c b/mount.cifs.c
-index 13b71ef..2612feb 100644
---- a/mount.cifs.c
-+++ b/mount.cifs.c
-@@ -61,7 +61,6 @@
- #include "mount.h"
- #include "util.h"
- #include "resolve_host.h"
--#include "data_blob.h"
-
- #ifndef MS_MOVE
- #define MS_MOVE 8192
-