emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/net/sasl-ntlm.el,v


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/net/sasl-ntlm.el,v
Date: Sun, 29 Jun 2008 01:51:54 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      08/06/29 01:51:51

Index: lisp/net/sasl-ntlm.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/net/sasl-ntlm.el,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- lisp/net/sasl-ntlm.el       6 May 2008 07:31:47 -0000       1.4
+++ lisp/net/sasl-ntlm.el       29 Jun 2008 01:51:51 -0000      1.5
@@ -36,12 +36,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 [<previous step function> <result of previous step function>]"
   (let ((user (sasl-client-name client)))
@@ -49,7 +49,7 @@
 
 (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)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]