emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/url-http-ntlm c780a2b 03/42: url-http-ntlm.el: Adjust b


From: Stefan Monnier
Subject: [elpa] externals/url-http-ntlm c780a2b 03/42: url-http-ntlm.el: Adjust blank lines
Date: Sat, 28 Nov 2020 17:19:42 -0500 (EST)

branch: externals/url-http-ntlm
commit c780a2b4bc73906fe3db6d7b42aed449ec79c8de
Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Commit: Thomas Fitzsimmons <fitzsim@fitzsim.org>

    url-http-ntlm.el: Adjust blank lines
---
 url-http-ntlm.el | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/url-http-ntlm.el b/url-http-ntlm.el
index 309175f..7488416 100644
--- a/url-http-ntlm.el
+++ b/url-http-ntlm.el
@@ -90,24 +90,20 @@ Note that for any server, only one user and password is 
ever stored.")
       (:error
        (url-http-ntlm-authorisation url :clear)))))
 
-
 (defun url-ntlm-ensure-keepalive ()
   (assert url-http-attempt-keepalives
           nil
           "NTLM authentication won't work unless `url-http-attempt-keepalives' 
is set!"))
 
-
 (defun url-ntlm-clean-headers ()
   (setq url-http-extra-headers
         (url-http-ntlm-rmssoc "Authorization" url-http-extra-headers)))
 
-
 (defvar url-ntlm-last-args nil
   "Stores the last ARGS argument to `url-ntlm-get-stage' and the return value. 
This is
   used to detect multiple calls.")
 (make-variable-buffer-local 'url-ntlm-last-args)
 
-
 (defun url-ntlm-get-stage (args)
   "Determine what stage of the NTLM handshake we are at.
 
@@ -141,7 +137,6 @@ response's \"WWW-Authenticate\" header, munged by 
`url-parse-args'."
           (setq url-ntlm-last-args (cons args stage))
           stage))))
 
-
 (defun url-http-ntlm-authorisation (url &optional clear)
   "Get or clear NTLM authentication details for URL. If CLEAR is
   non-nil, clear any saved credentials for server. Otherwise,
@@ -186,7 +181,6 @@ stored."
             ;;
             stored))))
 
-
 (defun url-http-ntlm-get-challenge ()
   "Return the NTLM Type-2 message in the WWW-Authenticate header,
 if it is there."
@@ -197,17 +191,14 @@ if it is there."
                           www-authenticate)
         (base64-decode-string (match-string 1 www-authenticate))))))
 
-
 (defun url-http-ntlm-rmssoc (key alist)
   (remove* key alist :key 'car :test 'equal))
 
-
 (defun url-http-ntlm-string (data)
   (concat "NTLM " (base64-encode-string data :nobreak)))
 
-
 (url-register-auth-scheme "ntlm" nil 8)
 
-
 (provide 'url-http-ntlm)
+
 ;;; url-http-ntlm.el ends here



reply via email to

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