From c43e660f77dd4f39167463884b7e48ead7e45e85 Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Wed, 18 Jan 2006 12:55:50 +0000 Subject: Displaying the offline message for both Exchange personal and GAL folders. Fixes #327483. svn path=/trunk/; revision=31232 --- plugins/exchange-operations/ChangeLog | 6 ++++++ plugins/exchange-operations/exchange-contacts.c | 8 +++++--- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 3916a4d4b2..51264b3749 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,9 @@ +2006-01-18 Sushma Rai + + * exchange-contacts.c (e_exchange_contacts_pcontacts): Displaying the + offline message for both Exchange personal and GAL folders. + Fixes #327483. + 2006-01-16 Harish Krishnaswamy * org-gnome-exchange-operations.error.xml: diff --git a/plugins/exchange-operations/exchange-contacts.c b/plugins/exchange-operations/exchange-contacts.c index a656282d2b..b428b6b032 100644 --- a/plugins/exchange-operations/exchange-contacts.c +++ b/plugins/exchange-operations/exchange-contacts.c @@ -146,9 +146,11 @@ e_exchange_contacts_pcontacts (EPlugin *epl, EConfigHookItemFactoryData *data) } uri_text = e_source_get_uri (source); - if (uri_text && strncmp (uri_text, "exchange", 8)) { - g_free (uri_text); - return NULL; + if (uri_text && g_ascii_strncasecmp (uri_text, "exchange", 8)) { + if (g_ascii_strncasecmp (uri_text, "gal", 3)) { + g_free (uri_text); + return NULL; + } } g_free (uri_text); -- cgit v1.2.3