diff options
author | 2016-08-18 12:33:26 +0200 | |
---|---|---|
committer | 2016-09-14 12:59:38 +0200 | |
commit | c96753d10a08e833af80a1f03e24b8c70b37fa8c (patch) | |
tree | 66511476e913dbe53fb3fb856954443715350260 /dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch | |
parent | media-sound/lxmusic: version bump to 0.4.7 (diff) | |
download | gentoo-c96753d10a08e833af80a1f03e24b8c70b37fa8c.tar.gz gentoo-c96753d10a08e833af80a1f03e24b8c70b37fa8c.tar.bz2 gentoo-c96753d10a08e833af80a1f03e24b8c70b37fa8c.zip |
dev-libs/cyrus-sasl: remove unused patches.
Closes: https://github.com/gentoo/gentoo/pull/2231
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch')
-rw-r--r-- | dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch b/dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch deleted file mode 100644 index f5f372d171ee..000000000000 --- a/dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.23-authd-fix.patch +++ /dev/null @@ -1,28 +0,0 @@ -fix warnings: - -auth_sasldb.c: In function ‘auth_sasldb’: -auth_sasldb.c:144: warning: implicit declaration of function ‘gethostname’ - -auth_sasldb.c:153: warning: passing argument 8 of ‘_sasldb_getdata’ from incompatible pointer type -../sasldb/sasldb.h:60: note: expected ‘size_t *’ but argument is of type ‘int *’ - ---- saslauthd/auth_sasldb.c -+++ saslauthd/auth_sasldb.c -@@ -41,6 +41,7 @@ - #include <string.h> - #include <stdlib.h> - #include <pwd.h> -+#include <unistd.h> - /* END PUBLIC DEPENDENCIES */ - - #define RETURN(x) return strdup(x) -@@ -131,7 +132,8 @@ - /* VARIABLES */ - char pw[1024]; /* pointer to passwd file entry */ - sasl_utils_t utils; -- int ret, outsize; -+ int ret; -+ size_t outsize; - const char *use_realm; - char realm_buf[MAXHOSTNAMELEN]; - /* END VARIABLES */ |