diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 3c8eda2215..0edd44c6b2 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2004-08-27 Not Zed <NotZed@Ximian.com> + ** See bug #62856 (workaround). + + * gui/component/addressbook.c (addressbook_authenticate): add + online flag to password request. + ** See bug #64011. * gui/component/addressbook-view.c (edit_addressbook_cb): Remove diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 1f51524c8e..cbf908c17f 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -178,7 +178,7 @@ addressbook_authenticate (EBook *book, gboolean previous_failure, ESource *sourc char *prompt; gboolean remember; char *failed_auth; - guint32 flags = E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET; + guint32 flags = E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET|E_PASSWORDS_ONLINE; if (previous_failure) { failed_auth = _("Failed to authenticate.\n"); |