aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-06-22 03:53:47 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-06-22 03:53:47 +0800
commit34bc515362401bdb0c747b9d4e524e7c2430a9d1 (patch)
tree2778a3856f32ceceaf2fae57b28431d24ba8755e /camel/ChangeLog
parentf8db9032d6813046f468718d9d22545a1b519a73 (diff)
downloadgsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar.gz
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar.bz2
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar.lz
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar.xz
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.tar.zst
gsoc2013-evolution-34bc515362401bdb0c747b9d4e524e7c2430a9d1.zip
New function that decides if 2 word types are mergeable. An atom and a
2001-06-21 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (word_types_compatable): New function that decides if 2 word types are mergeable. An atom and a qstring are mergeable; 2 qstrings are mergeable; and 2 encoded words are mergeable. (header_encode_phrase_merge_words): If 2 words are merged, the new word type is the MAX of the combined types. This means that if we merge a qstring and an atom, the resulting word type is a qstring. * camel-internet-address.c (internet_format): s/g_string_sprintfa/g_string_append since this makes more sense in this particular case. (internet_encode): Same here. svn path=/trunk/; revision=10377
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index d3e4ad5f20..a5a593ef23 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,21 @@
2001-06-21 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-mime-utils.c (word_types_compatable): New function that
+ decides if 2 word types are mergeable. An atom and a qstring are
+ mergeable; 2 qstrings are mergeable; and 2 encoded words are
+ mergeable.
+ (header_encode_phrase_merge_words): If 2 words are merged, the new
+ word type is the MAX of the combined types. This means that if we
+ merge a qstring and an atom, the resulting word type is a
+ qstring.
+
+ * camel-internet-address.c (internet_format):
+ s/g_string_sprintfa/g_string_append since this makes more sense in
+ this particular case.
+ (internet_encode): Same here.
+
+2001-06-21 Jeffrey Stedfast <fejj@ximian.com>
+
* providers/smtp/camel-smtp-transport.c (smtp_send): Use
camel_address_length() rather than casting and accessing data
members.