summaryrefslogtreecommitdiffstats
path: root/source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-11-21 20:16:54 +0000
committer Eric Hameleers <alien@slackware.com>2021-11-22 08:59:57 +0100
commit47129ed59f756b223eb47e3b28088900ad63e21c (patch)
tree501f98c9ff1a086a5a6bb52911113b897c4c47ae /source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch
parent2cfe36fdb8556ea0df2b9997349efbc0d8ecab51 (diff)
downloadcurrent-47129ed59f756b223eb47e3b28088900ad63e21c.tar.gz
current-47129ed59f756b223eb47e3b28088900ad63e21c.tar.xz
Sun Nov 21 20:16:54 UTC 202120211121201654
a/kernel-generic-5.15.4-x86_64-1.txz: Upgraded. a/kernel-huge-5.15.4-x86_64-1.txz: Upgraded. a/kernel-modules-5.15.4-x86_64-1.txz: Upgraded. d/kernel-headers-5.15.4-x86-1.txz: Upgraded. k/kernel-source-5.15.4-noarch-1.txz: Upgraded. l/imagemagick-7.1.0_15-x86_64-1.txz: Upgraded. l/libcap-2.61-x86_64-1.txz: Upgraded. l/python-packaging-21.3-x86_64-1.txz: Upgraded. n/nss-pam-ldapd-0.9.12-x86_64-1.txz: Upgraded. extra/fltk/fltk-1.3.8-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch')
-rw-r--r--source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch b/source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch
deleted file mode 100644
index d03f1552d..000000000
--- a/source/n/nss-pam-ldapd/548efe5333b56a0a042843a044e0348317f80065.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 548efe5333b56a0a042843a044e0348317f80065 Mon Sep 17 00:00:00 2001
-From: Arthur de Jong <arthur@arthurdejong.org>
-Date: Mon, 11 Nov 2019 23:06:20 +0100
-Subject: [PATCH] Log the correct timeout value
-
-This fixes logging of the LDAP_OPT_TIMEOUT, LDAP_OPT_NETWORK_TIMEOUT and
-LDAP_X_OPT_CONNECT_TIMEOUT options to actually log the value of the
-bind_timelimit option instead of the timelimit option.
----
- nslcd/myldap.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/nslcd/myldap.c b/nslcd/myldap.c
-index 02b97195..0ee1be80 100644
---- a/nslcd/myldap.c
-+++ b/nslcd/myldap.c
-@@ -911,17 +911,17 @@ static int do_set_options(MYLDAP_SESSION *session)
- tv.tv_usec = 0;
- #ifdef LDAP_OPT_TIMEOUT
- log_log(LOG_DEBUG, "ldap_set_option(LDAP_OPT_TIMEOUT,%d)",
-- nslcd_cfg->timelimit);
-+ nslcd_cfg->bind_timelimit);
- LDAP_SET_OPTION(session->ld, LDAP_OPT_TIMEOUT, &tv);
- #endif /* LDAP_OPT_TIMEOUT */
- #ifdef LDAP_OPT_NETWORK_TIMEOUT
- log_log(LOG_DEBUG, "ldap_set_option(LDAP_OPT_NETWORK_TIMEOUT,%d)",
-- nslcd_cfg->timelimit);
-+ nslcd_cfg->bind_timelimit);
- LDAP_SET_OPTION(session->ld, LDAP_OPT_NETWORK_TIMEOUT, &tv);
- #endif /* LDAP_OPT_NETWORK_TIMEOUT */
- #ifdef LDAP_X_OPT_CONNECT_TIMEOUT
- log_log(LOG_DEBUG, "ldap_set_option(LDAP_X_OPT_CONNECT_TIMEOUT,%d)",
-- nslcd_cfg->timelimit);
-+ nslcd_cfg->bind_timelimit);
- LDAP_SET_OPTION(session->ld, LDAP_X_OPT_CONNECT_TIMEOUT, &tv);
- #endif /* LDAP_X_OPT_CONNECT_TIMEOUT */
- log_log(LOG_DEBUG, "ldap_set_option(LDAP_OPT_REFERRALS,%s)",