Show
Ignore:
Timestamp:
09/09/06 16:30:10 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/net/ldap.el

    r4098 r4161  
    491491  `attrsonly', if non-nil, indicates that only attributes are retrieved, 
    492492not their associated values. 
     493  `auth' is one of the symbols `simple', `krbv41' or `krbv42'. 
    493494  `base' is the base for the search as described in RFC 1779. 
    494495  `scope' is one of the three symbols `sub', `base' or `one'. 
     
    513514        (scope (plist-get search-plist 'scope)) 
    514515        (binddn (plist-get search-plist 'binddn)) 
     516        (auth (plist-get search-plist 'auth)) 
    515517        (passwd (plist-get search-plist 'passwd)) 
    516518        (deref (plist-get search-plist 'deref)) 
     
    542544               (not (equal "" binddn))) 
    543545          (setq arglist (nconc arglist (list (format "-D%s" binddn))))) 
     546      (if (and auth 
     547               (equal 'simple auth)) 
     548          (setq arglist (nconc arglist (list "-x")))) 
    544549      (if (and passwd 
    545550               (not (equal "" passwd)))