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/exchange-contacts.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'plugins/exchange-operations/exchange-contacts.c') 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