diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-calendar.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 7ebe8ec037..9951041a46 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,5 +1,9 @@ 2006-02-27 Sushma Rai <rsushma@novell.com> + * exchange-calendar.c (e_exchange_calendar_pcalendar): fixed a typo. + +2006-02-27 Sushma Rai <rsushma@novell.com> + * exchange-contacts.c (e_exchange_contacts_pcontacts): Check for NULL account. diff --git a/plugins/exchange-operations/exchange-calendar.c b/plugins/exchange-operations/exchange-calendar.c index c6291cfb5a..26d0dc8001 100644 --- a/plugins/exchange-operations/exchange-calendar.c +++ b/plugins/exchange-operations/exchange-calendar.c @@ -213,7 +213,7 @@ e_exchange_calendar_pcalendar (EPlugin *epl, EConfigHookItemFactoryData *data) account = exchange_operations_get_exchange_account (); if (!account) { g_free (calendar_old_source_uri); - retrun NULL; + return NULL; } account_name = account->account_name; |