diff options
| author | Filipp Gunbin | 2018-11-29 17:00:09 +0300 |
|---|---|---|
| committer | Filipp Gunbin | 2018-11-29 17:00:09 +0300 |
| commit | 3b852da52fda327302956d263a3f916e3363cdd4 (patch) | |
| tree | 64587a491179707c04143f83876a1b7441609607 | |
| parent | 85ce7168490a0d7b8bb9c575b9c3382d445eae22 (diff) | |
| download | emacs-3b852da52fda327302956d263a3f916e3363cdd4.tar.gz emacs-3b852da52fda327302956d263a3f916e3363cdd4.zip | |
LDAP: Set process-connection-type to t
* lisp/net/ldap.el (ldap-search-internal): Set
process-connection-type to t. (Bug#33050)
| -rw-r--r-- | lisp/net/ldap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index 7b47a54b9fb..720c9c178f8 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el | |||
| @@ -646,7 +646,7 @@ an alist of attribute/value pairs." | |||
| 646 | (not (equal "" sizelimit))) | 646 | (not (equal "" sizelimit))) |
| 647 | (setq arglist (nconc arglist (list (format "-z%s" sizelimit))))) | 647 | (setq arglist (nconc arglist (list (format "-z%s" sizelimit))))) |
| 648 | (if passwd | 648 | (if passwd |
| 649 | (let* ((process-connection-type nil) | 649 | (let* ((process-connection-type t) |
| 650 | (proc-args (append arglist ldap-ldapsearch-args | 650 | (proc-args (append arglist ldap-ldapsearch-args |
| 651 | filter)) | 651 | filter)) |
| 652 | (proc (apply #'start-process "ldapsearch" buf | 652 | (proc (apply #'start-process "ldapsearch" buf |