]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix wrong variable name.
authorTed Zlatanov <tzz@lifelogs.com>
Thu, 25 Mar 2010 01:14:42 +0000 (20:14 -0500)
committerTed Zlatanov <tzz@lifelogs.com>
Thu, 25 Mar 2010 01:14:42 +0000 (20:14 -0500)
(url-http-parse-headers): Fix wrong variable name.

lisp/url/ChangeLog
lisp/url/url-http.el

index fc4bca157afc148770c729123dc84aba71b6c753..d3231672dd223d3d46f10f0b978556cb0544b973 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-24  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * url-http.el (url-http-parse-headers): Fix wrong variable name.
+
 2010-03-24  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * url-http.el (url-http-codes): New variable to hold a mapping of
index 4d734815c97447cfecaae90c920b4bbf12439568..9f988beaf0a343e778c1a3b39443c274f1769d6f 100644 (file)
@@ -486,7 +486,7 @@ should be shown to the user."
        (class nil)
        (success nil)
        ;; other status symbols: jewelry and luxury cars
-       (status-symbol (cadr (assq status-number url-http-codes))))
+       (status-symbol (cadr (assq url-http-response-status url-http-codes))))
     (setq class (/ url-http-response-status 100))
     (url-http-debug "Parsed HTTP headers: class=%d status=%d" class url-http-response-status)
     (url-http-handle-cookies)