summaryrefslogtreecommitdiffstats
path: root/abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2018-02-28 18:45:21 (GMT)
committerBritney Fransen <brfransen@gmail.com>2018-02-28 18:45:21 (GMT)
commit3ac7c7b26d22adb0e35f92620e55115f153e589e (patch)
treea145c1aa3bb6223a593df39a7b97acf8d9641a37 /abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch
parent3218054e06dec2ee8c41cd89b44bf869e09a0e34 (diff)
downloadlinhes_pkgbuild-3ac7c7b26d22adb0e35f92620e55115f153e589e.zip
linhes_pkgbuild-3ac7c7b26d22adb0e35f92620e55115f153e589e.tar.gz
linhes_pkgbuild-3ac7c7b26d22adb0e35f92620e55115f153e589e.tar.bz2
libsasl: update to 2.1.26
Diffstat (limited to 'abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch')
-rw-r--r--abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch b/abs/core/libsasl/cyrus-sasl-2.1.23-authd-fix.patch
deleted file mode 100644
index f5f372d..0000000
--- a/abs/core/libsasl/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 */