From: Glenn Morris Date: Fri, 9 Jan 2009 03:19:39 +0000 (+0000) Subject: (url-cid-gnus): Fix typo in header name. X-Git-Tag: emacs-pretest-23.0.90~615 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78892d1be9475a5b43bbc39def2f9c552e3adaf1;p=emacs.git (url-cid-gnus): Fix typo in header name. --- diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 2f9702312ae..04483a8539e 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2009-01-09 Glenn Morris + + * url-cid.el (url-cid-gnus): Fix typo in header name. + 2008-11-04 Chong Yidong * url-util.el (url-basepath): Add url-basepath as an alias for diff --git a/lisp/url/url-cid.el b/lisp/url/url-cid.el index 75e23f58e62..f71b0a203e7 100644 --- a/lisp/url/url-cid.el +++ b/lisp/url/url-cid.el @@ -44,7 +44,7 @@ (if (= 0 (length encoding)) (setq encoding "8bit")) (if (listp content-type) (setq content-type (car content-type))) - (insert (format "Content-type: %d\r\n" (length data)) + (insert (format "Content-length: %d\r\n" (length data)) "Content-type: " content-type "\r\n" "Content-transfer-encoding: " encoding "\r\n" "\r\n"