X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b35f288d478ef137a4d9e8e5a6a5f368a86b01f5..493c66882d491bcd6178e580abea92787f3e1555:/lisp/net/sasl-ntlm.el diff --git a/lisp/net/sasl-ntlm.el b/lisp/net/sasl-ntlm.el index 41a1fdb186..312941816c 100644 --- a/lisp/net/sasl-ntlm.el +++ b/lisp/net/sasl-ntlm.el @@ -1,11 +1,12 @@ ;;; sasl-ntlm.el --- NTLM (NT Lan Manager) module for the SASL client framework -;; Copyright (C) 2000, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2007-2012 Free Software Foundation, Inc. ;; Author: Taro Kawagishi ;; Keywords: SASL, NTLM ;; Version: 1.00 ;; Created: February 2001 +;; Package: sasl ;; This file is part of GNU Emacs. @@ -36,12 +37,12 @@ '(ignore ;nothing to do before making sasl-ntlm-request ;authentication request sasl-ntlm-response) ;response to challenge - "A list of functions to be called in sequnece for the NTLM -authentication steps. Ther are called by 'sasl-next-step.") + "A list of functions to be called in sequence for the NTLM +authentication steps. They are called by `sasl-next-step'.") (defun sasl-ntlm-request (client step) "SASL step function to generate a NTLM authentication request to the server. -Called from 'sasl-next-step. +Called from `sasl-next-step'. CLIENT is a vector [mechanism user service server sasl-client-properties] STEP is a vector [ ]" (let ((user (sasl-client-name client))) @@ -49,7 +50,7 @@ STEP is a vector [ ]" (defun sasl-ntlm-response (client step) "SASL step function to generate a NTLM response against the server -challenge stored in the 2nd element of STEP. Called from 'sasl-next-step." +challenge stored in the 2nd element of STEP. Called from `sasl-next-step'." (let* ((user (sasl-client-name client)) (passphrase (sasl-read-passphrase (format "NTLM passphrase for %s: " user))) @@ -62,5 +63,4 @@ challenge stored in the 2nd element of STEP. Called from 'sasl-next-step." (provide 'sasl-ntlm) -;; arch-tag: 1d9164c1-1df0-418f-b7ab-360157fd05dc ;;; sasl-ntlm.el ends here