>From 3ba253967a9db196f00b494f0e1d39ced8d7a0f7 Mon Sep 17 00:00:00 2001 From: Fabrice Bauzac Date: Mon, 15 Aug 2022 11:46:19 +0200 Subject: [PATCH] Add missing auth-source option for ldap * lisp/net/ldap.el (ldap-host-parameters-alist): Add a missing item for auth-source in the defcustom. Copyright-paperwork-exempt: yes --- lisp/net/ldap.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index 78405414a28..bc98e024396 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el @@ -150,7 +150,12 @@ ldap-host-parameters-alist :tag "Size Limit" :inline t (const :tag "Size Limit" sizelimit) - (integer :tag "(number of records)")))))) + (integer :tag "(number of records)")) + (list + :tag "Auth-Source" + :inline t + (const auth-source) + (boolean :tag "Use Auth-Source")))))) (defcustom ldap-ldapsearch-prog "ldapsearch" "The name of the ldapsearch command line program." -- 2.25.1