From eea8bc47ec3b8fc60ac9d35a160f05f84ad96604 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sun, 23 Feb 2003 06:39:30 +0000 Subject: Set the local provider description field to a string rather than NULL to 2003-02-23 Jeffrey Stedfast * 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 --- mail/ChangeLog | 6 ++++++ mail/mail-local.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 5fd28357c3..eb08433c49 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2003-02-23 Jeffrey Stedfast + + * 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 * mail-format.c (write_text_header): bitwise-or in 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, /* ... */ -- cgit