setauth.lisp 223 B

1234567891011121314
  1. (in-package :hurd)
  2. (defcfun ("setauth" %setauth)
  3. :int
  4. (auth auth-t))
  5. (defun setauth (auth)
  6. "Set current authentication server."
  7. (declare (type fixnum auth))
  8. (let ((err (%setauth auth)))
  9. (not (= err -1))))