aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/ldap.el4
-rw-r--r--lisp/net/network-stream.el6
2 files changed, 6 insertions, 4 deletions
diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el
index a77fc3c6514..1df975af3d9 100644
--- a/lisp/net/ldap.el
+++ b/lisp/net/ldap.el
@@ -546,8 +546,8 @@ not their associated values.
546 `auth' is one of the symbols `simple', `krbv41' or `krbv42'. 546 `auth' is one of the symbols `simple', `krbv41' or `krbv42'.
547 `base' is the base for the search as described in RFC 1779. 547 `base' is the base for the search as described in RFC 1779.
548 `scope' is one of the three symbols `sub', `base' or `one'. 548 `scope' is one of the three symbols `sub', `base' or `one'.
549 `binddn' is the distinguished name of the user to bind as (in RFC 1779 syntax). 549 `binddn' is the distinguished name of the user to bind as (in
550 `auth' is one of the symbols `simple', `krbv41' or `krbv42' 550RFC 1779 syntax).
551 `passwd' is the password to use for simple authentication. 551 `passwd' is the password to use for simple authentication.
552 `deref' is one of the symbols `never', `always', `search' or `find'. 552 `deref' is one of the symbols `never', `always', `search' or `find'.
553 `timelimit' is the timeout limit for the connection in seconds. 553 `timelimit' is the timeout limit for the connection in seconds.
diff --git a/lisp/net/network-stream.el b/lisp/net/network-stream.el
index e7b3150b792..0104fa7dd12 100644
--- a/lisp/net/network-stream.el
+++ b/lisp/net/network-stream.el
@@ -374,10 +374,12 @@ asynchronously, if possible."
374 (when (re-search-forward eoc nil t) 374 (when (re-search-forward eoc nil t)
375 (goto-char (match-beginning 0)) 375 (goto-char (match-beginning 0))
376 (delete-region (point-min) (line-beginning-position)))) 376 (delete-region (point-min) (line-beginning-position))))
377 (let* ((capability-command (plist-get parameters :capability-command))) 377 (let ((capability-command (plist-get parameters :capability-command))
378 (eo-capa (or (plist-get parameters :end-of-capability)
379 eoc)))
378 (list stream 380 (list stream
379 (network-stream-get-response stream start eoc) 381 (network-stream-get-response stream start eoc)
380 (network-stream-command stream capability-command eoc) 382 (network-stream-command stream capability-command eo-capa)
381 'tls)))))) 383 'tls))))))
382 384
383(defun network-stream-open-shell (name buffer host service parameters) 385(defun network-stream-open-shell (name buffer host service parameters)