aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/addressbook-migrate.c2
2 files changed, 7 insertions, 1 deletions
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 <hpj@ximian.com>
+
+ * gui/component/addressbook-migrate.c
+ (migrate_contact_folder_to_source): Add missing negation that caused
+ a crash.
+
2004-06-02 Chris Toshok <toshok@ximian.com>
* 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;
}