changeset 107542:0e139e55fc1b

Fix wrong variable name. (url-http-parse-headers): Fix wrong variable name.
author Ted Zlatanov <tzz@lifelogs.com>
date Wed, 24 Mar 2010 20:14:42 -0500
parents d59e6301c2cd
children c56cc351f300
files lisp/url/ChangeLog lisp/url/url-http.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/url/ChangeLog	Wed Mar 24 20:06:08 2010 -0400
+++ b/lisp/url/ChangeLog	Wed Mar 24 20:14:42 2010 -0500
@@ -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
--- a/lisp/url/url-http.el	Wed Mar 24 20:06:08 2010 -0400
+++ b/lisp/url/url-http.el	Wed Mar 24 20:14:42 2010 -0500
@@ -486,7 +486,7 @@
 	(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)