diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-02-23 14:39:30 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-23 14:39:30 +0800 |
commit | eea8bc47ec3b8fc60ac9d35a160f05f84ad96604 (patch) | |
tree | d6bc83705f8ee1096b46f84c12c1f8cbd436813c /mail | |
parent | 91acf88e955d98ddc12cdb249e05568204d6573c (diff) | |
download | gsoc2013-evolution-eea8bc47ec3b8fc60ac9d35a160f05f84ad96604.tar.gz gsoc2013-evolution-eea8bc47ec3b8fc60ac9d35a160f05f84ad96604.tar.zst gsoc2013-evolution-eea8bc47ec3b8fc60ac9d35a160f05f84ad96604.zip |
Set the local provider description field to a string rather than NULL to
2003-02-23 Jeffrey Stedfast <fejj@ximian.com>
* mail-local.c: Set the local provider description field to a
string rather than NULL to prevent a segfault on solaris. Fixes
bug #38418.
svn path=/trunk/; revision=20007
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-local.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5fd28357c3..eb08433c49 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,11 @@ 2003-02-23 Jeffrey Stedfast <fejj@ximian.com> + * mail-local.c: Set the local provider description field to a + string rather than NULL to prevent a segfault on solaris. Fixes + bug #38418. + +2003-02-23 Jeffrey Stedfast <fejj@ximian.com> + * mail-format.c (write_text_header): bitwise-or in CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES to fix bug #38499. diff --git a/mail/mail-local.c b/mail/mail-local.c index 04127c09bb..e71a3315c2 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -1107,7 +1107,7 @@ static void mail_local_store_remove_folder(MailLocalStore *mls, const char *path /* ** Local Provider ************************************************************** */ static CamelProvider local_provider = { - "file", "Local mail", NULL, "mail", + "file", "Local mail", "Local mailbox file", "mail", CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_IS_EXTERNAL, CAMEL_URL_NEED_PATH, /* ... */ |