From dfc2d8df9ad80051f63515b6175f043ce8aa789d Mon Sep 17 00:00:00 2001 From: Hans Petter Jansson Date: Wed, 2 Jun 2004 21:27:08 +0000 Subject: Add missing negation that caused a crash. 2004-06-02 Hans Petter Jansson * gui/component/addressbook-migrate.c (migrate_contact_folder_to_source): Add missing negation that caused a crash. svn path=/trunk/; revision=26162 --- addressbook/ChangeLog | 6 ++++++ addressbook/gui/component/addressbook-migrate.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9f1e6cc72a..ea645f990a 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2004-06-02 Hans Petter Jansson + + * gui/component/addressbook-migrate.c + (migrate_contact_folder_to_source): Add missing negation that caused + a crash. + 2004-06-02 Chris Toshok * gui/component/addressbook-migrate.c (addressbook_migrate): diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c index ddbe038d69..ae50765225 100644 --- a/addressbook/gui/component/addressbook-migrate.c +++ b/addressbook/gui/component/addressbook-migrate.c @@ -374,7 +374,7 @@ migrate_contact_folder_to_source (MigrationContext *context, char *old_path, ESo new_book = e_book_new (new_source, &e); if (!new_book - || e_book_open (new_book, FALSE, &e)) { + || !e_book_open (new_book, FALSE, &e)) { g_warning ("failed to load destination book for migration: `%s'", e->message); goto finish; } -- cgit