summaryrefslogtreecommitdiff
path: root/news/nntpcache/files
diff options
context:
space:
mode:
Diffstat (limited to 'news/nntpcache/files')
-rw-r--r--news/nntpcache/files/patch-src-authinfo_ldap.c19
-rw-r--r--news/nntpcache/files/patch-src-authinfo_pam.c12
-rw-r--r--news/nntpcache/files/patch-src-authinfo_pam.ext11
-rw-r--r--news/nntpcache/files/patch-src::authinfo_pam.c13
4 files changed, 31 insertions, 24 deletions
diff --git a/news/nntpcache/files/patch-src-authinfo_ldap.c b/news/nntpcache/files/patch-src-authinfo_ldap.c
new file mode 100644
index 000000000000..99b4a551cfd1
--- /dev/null
+++ b/news/nntpcache/files/patch-src-authinfo_ldap.c
@@ -0,0 +1,19 @@
+--- src/authinfo_ldap.c.orig Sat Dec 18 12:08:30 1999
++++ src/authinfo_ldap.c Wed Sep 26 10:55:27 2001
+@@ -78,7 +78,16 @@
+
+ lderr = ldap_bind_s(ld, dnbuf, pass, LDAP_AUTH_SIMPLE);
+ if (lderr != LDAP_SUCCESS && lderr != LDAP_INVALID_CREDENTIALS && lderr != LDAP_INAPPROPRIATE_AUTH)
++#if LDAP_API_VERSION >= 2004
++ {
++ int ld_errno = 0;
++ ldap_get_option(ld, LDAP_OPT_ERROR_NUMBER, &ld_errno);
++ logen(("LDAP ERROR: ldap user bind failed (%d): %s", lderr, ldap_err2string(ld_errno)));
++ }
++#else
++
+ logen(("LDAP ERROR: ldap user bind failed (%d): %s", lderr, ldap_err2string(GET_LDERROR(ld))));
++#endif
+ ldap_unbind(ld);
+ memset(pass, strlen(pass), 0);
+ if (lderr == LDAP_SUCCESS) {
diff --git a/news/nntpcache/files/patch-src-authinfo_pam.c b/news/nntpcache/files/patch-src-authinfo_pam.c
new file mode 100644
index 000000000000..0c71400c31f8
--- /dev/null
+++ b/news/nntpcache/files/patch-src-authinfo_pam.c
@@ -0,0 +1,12 @@
+--- src/authinfo_pam.c.orig Sun Jun 11 14:32:55 2000
++++ src/authinfo_pam.c Wed Sep 26 11:27:09 2001
+@@ -15,7 +15,9 @@
+ #include "authinfo_pam.h"
+
+ #include <security/pam_appl.h>
++#ifndef __FreeBSD__
+ #include <security/pam_misc.h>
++#endif
+
+ /*
+ * pam authenticator.
diff --git a/news/nntpcache/files/patch-src-authinfo_pam.ext b/news/nntpcache/files/patch-src-authinfo_pam.ext
deleted file mode 100644
index f0d7d72256f5..000000000000
--- a/news/nntpcache/files/patch-src-authinfo_pam.ext
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/authinfo_pam.ext.orig Sun Jun 11 22:01:43 2000
-+++ src/authinfo_pam.ext Fri Sep 14 10:55:25 2001
-@@ -19,6 +19,8 @@
- #else
- # define EXP_(x)
- #endif
-+extern authenticator pam_authenticator;
-+extern int pam_got_pass(char *pass);
- #ifdef __cplusplus
- }
- #endif
diff --git a/news/nntpcache/files/patch-src::authinfo_pam.c b/news/nntpcache/files/patch-src::authinfo_pam.c
deleted file mode 100644
index 6a645026e42f..000000000000
--- a/news/nntpcache/files/patch-src::authinfo_pam.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$FreeBSD$
-
---- src/authinfo_pam.c.orig Sat Nov 10 05:52:17 2001
-+++ src/authinfo_pam.c Sat Nov 10 05:51:29 2001
-@@ -15,7 +15,7 @@
- #include "authinfo_pam.h"
-
- #include <security/pam_appl.h>
--#include <security/pam_misc.h>
-+/* #include <security/pam_misc.h> */
-
- /*
- * pam authenticator.