diff options
author | Glenn Morris <rgm@gnu.org> | 2011-01-15 12:03:38 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-01-15 12:03:38 -0800 |
commit | 362b9d483c714a8fd87966ddbd8686850f870e34 (patch) | |
tree | e37a94fe030c9361fa28b4f3f5c8910cc7ab8448 /lisp/net/ldap.el | |
parent | dab7376027ea499962b2916652c6f30b40eac6d9 (diff) | |
parent | 0ad254447b7542284a2eb3c63b0732edb9409af7 (diff) | |
download | emacs-362b9d483c714a8fd87966ddbd8686850f870e34.tar.gz emacs-362b9d483c714a8fd87966ddbd8686850f870e34.tar.bz2 emacs-362b9d483c714a8fd87966ddbd8686850f870e34.zip |
Merge from emacs-23 branch.
Diffstat (limited to 'lisp/net/ldap.el')
-rw-r--r-- | lisp/net/ldap.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index 88284af06f0..0de4c7f32d8 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el @@ -557,7 +557,8 @@ an alist of attribute/value pairs." (not (equal "" sizelimit))) (setq arglist (nconc arglist (list (format "-z%s" sizelimit))))) (apply #'call-process ldap-ldapsearch-prog - nil buf nil + ;; Ignore stderr, which can corrupt results + nil (list buf nil) nil (append arglist ldap-ldapsearch-args filter)) (insert "\n") (goto-char (point-min)) |