Changeset 4161 for trunk/lisp/net/ldap.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/net/ldap.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/net/ldap.el
r4098 r4161 491 491 `attrsonly', if non-nil, indicates that only attributes are retrieved, 492 492 not their associated values. 493 `auth' is one of the symbols `simple', `krbv41' or `krbv42'. 493 494 `base' is the base for the search as described in RFC 1779. 494 495 `scope' is one of the three symbols `sub', `base' or `one'. … … 513 514 (scope (plist-get search-plist 'scope)) 514 515 (binddn (plist-get search-plist 'binddn)) 516 (auth (plist-get search-plist 'auth)) 515 517 (passwd (plist-get search-plist 'passwd)) 516 518 (deref (plist-get search-plist 'deref)) … … 542 544 (not (equal "" binddn))) 543 545 (setq arglist (nconc arglist (list (format "-D%s" binddn))))) 546 (if (and auth 547 (equal 'simple auth)) 548 (setq arglist (nconc arglist (list "-x")))) 544 549 (if (and passwd 545 550 (not (equal "" passwd)))
