diff options
author | Not Zed <NotZed@Ximian.com> | 2004-08-30 12:32:28 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-08-30 12:32:28 +0800 |
commit | 89c47899ef4d2c547feb13edfed963a686f4449e (patch) | |
tree | 5eae53410710e637e76b3192e14f83adfc994870 /addressbook | |
parent | 9262d7ff7f0707cfaf74287d5c4dd10424f122bd (diff) | |
download | gsoc2013-evolution-89c47899ef4d2c547feb13edfed963a686f4449e.tar.gz gsoc2013-evolution-89c47899ef4d2c547feb13edfed963a686f4449e.tar.zst gsoc2013-evolution-89c47899ef4d2c547feb13edfed963a686f4449e.zip |
** See bug #62856 (workaround).
2004-08-27 Not Zed <NotZed@Ximian.com>
** See bug #62856 (workaround).
* gui/component/addressbook.c (addressbook_authenticate): add
online flag to password request.
svn path=/trunk/; revision=27076
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"); |