]> git.eshelyaron.com Git - emacs.git/commitdiff
Move required options out of ldap-ldapsearch-args
authorFilipp Gunbin <fgunbin@fastmail.fm>
Tue, 25 Oct 2022 14:59:33 +0000 (17:59 +0300)
committerFilipp Gunbin <fgunbin@fastmail.fm>
Tue, 25 Oct 2022 15:00:54 +0000 (18:00 +0300)
* lisp/net/ldap.el (ldap-ldapsearch-args, ldap-search-internal): Move
"-LLL" and "-tt" options as they're required for the code to work
properly.

lisp/net/ldap.el

index ccad8c4edb118b3daf90d0a3215de832f06c908c..de553468b1cdf5bdefd9997a4aa7c087604e9173 100644 (file)
@@ -156,7 +156,7 @@ Valid properties include:
   "The name of the ldapsearch command line program."
   :type '(string :tag "`ldapsearch' Program"))
 
-(defcustom ldap-ldapsearch-args '("-LLL" "-tt")
+(defcustom ldap-ldapsearch-args nil
   "A list of additional arguments to pass to `ldapsearch'."
   :type '(repeat :tag "`ldapsearch' Arguments"
                 (string :tag "Argument")))
@@ -609,7 +609,8 @@ an alist of attribute/value pairs."
        (sizelimit (plist-get search-plist 'sizelimit))
        (withdn (plist-get search-plist 'withdn))
        (numres 0)
-       arglist dn name value record result)
+        (arglist (list "-LLL" "-tt"))
+       dn name value record result)
     (if (or (null filter)
            (equal "" filter))
        (error "No search filter"))