aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-07-29 22:24:10 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-07-29 22:24:10 +0800
commitb99bbc4232c9518907372abf722362d7dc11dd6a (patch)
tree29ff07c6984a7552245f7b9e0cd2f78fd22e48d7
parentafcf6bb7def172903116c57ee13137347ede9bfd (diff)
downloadgsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar.gz
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar.bz2
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar.lz
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar.xz
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.tar.zst
gsoc2013-evolution-b99bbc4232c9518907372abf722362d7dc11dd6a.zip
Fixed an ABR that may have been responsible for bug #62029.
2004-07-28 Jeffrey Stedfast <fejj@novell.com> * camel-mime-utils.c (camel_header_encode_string): Fixed an ABR that may have been responsible for bug #62029. svn path=/trunk/; revision=26769
-rw-r--r--camel/ChangeLog39
-rw-r--r--camel/camel-mime-utils.c2
2 files changed, 23 insertions, 18 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 78d15f32c1..f34886db48 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,22 +1,27 @@
+2004-07-28 Jeffrey Stedfast <fejj@novell.com>
+
+ * camel-mime-utils.c (camel_header_encode_string): Fixed an ABR
+ that may have been responsible for bug #62029.
+
2004-07-29 Sivaiah Nallagatla <snallagatla@novell.com>
- * proivders/groupwise/camel-groupwise-provider.c :
- Add an entry to specify POA address and a check box to
- say whehter ssl has to be used for SOAP or not
- (groupwise_auto_detect_cb) : new function to
- automatically fill POA address with host specified in receiving mail page
- (camel_provider_module_init) : use the new auto_detect funcntion
-
- * providers/groupwise/camel-gw-listener.c (modify_esource)
- (account_changed) (add_calendar_tasks_sources)
- (remove_calendar_tasks_sources) (get_addressbook_names_from_server)
- (add_addressbook_sources) (modify_addressbook_sources)
- (remove_addressbook_sources) : while forming the uri, use the value
- from new poa_address setting instead of url->host. Also use ssl
- setting from the new check box provider instaed of imap one
-
- (get_addressbook_names_from_server) : display an error to user
- when connection cpuld not be established with server during account setup
+ * proivders/groupwise/camel-groupwise-provider.c: Add an entry to
+ specify POA address and a check box to say whehter ssl has to be
+ used for SOAP or not
+ (groupwise_auto_detect_cb): new function to automatically fill POA
+ address with host specified in receiving mail page
+ (camel_provider_module_init): use the new auto_detect funcntion
+
+ * providers/groupwise/camel-gw-listener.c (modify_esource)
+ (account_changed, add_calendar_tasks_sources)
+ (remove_calendar_tasks_sources, get_addressbook_names_from_server)
+ (add_addressbook_sources, modify_addressbook_sources)
+ (remove_addressbook_sources): while forming the uri, use the value
+ from new poa_address setting instead of url->host. Also use ssl
+ setting from the new check box provider instaed of imap one
+ (get_addressbook_names_from_server): display an error to user when
+ connection cpuld not be established with server during account
+ setup
2004-07-26 Jeffrey Stedfast <fejj@novell.com>
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 6e7607f096..7bb0153094 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -1335,7 +1335,7 @@ camel_header_encode_string (const unsigned char *in)
continue;
}
- if (camel_mime_is_lwsp (c) && !last_was_space) {
+ if (c < 256 && camel_mime_is_lwsp (c) && !last_was_space) {
/* we've reached the end of a 'word' */
if (word && !(last_was_encoded && encoding)) {
/* output lwsp between non-encoded words */