From 802330e14c105cc9728cd705794df87bf93b5b77 Mon Sep 17 00:00:00 2001 From: okada Date: Fri, 16 Feb 2001 20:51:00 +0000 Subject: [PATCH] fix --- ntlm.el | 3 +-- sasl-ntlm.el | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/ntlm.el b/ntlm.el index 4dd5568..7b2182b 100644 --- a/ntlm.el +++ b/ntlm.el @@ -226,8 +226,7 @@ little-endian utf16." utf)) (defun ntlm-unicode2ascii (str len) - "Extract 7 bits ASCII part of a little endian utf16 string STR of length -LEN." + "Extract 7 bits ASCII part of a little endian utf16 string STR of length LEN." (let ((buf (make-string len 0)) (i 0) (j 0)) (while (< i len) (aset buf i (logand (aref str j) 127)) ;(string-to-number "7f" 16) diff --git a/sasl-ntlm.el b/sasl-ntlm.el index 1cc0952..fad2a04 100644 --- a/sasl-ntlm.el +++ b/sasl-ntlm.el @@ -34,7 +34,6 @@ (defconst sasl-ntlm-steps '(ignore ;nothing to do before making - ;authentication request sasl-ntlm-request ;authentication request sasl-ntlm-response) ;response to challenge "A list of functions to be called in sequnece for the NTLM -- 1.7.10.4