diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-04-01 07:28:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-04-01 07:28:47 +0800 |
commit | 7bbc53fbefca6eeafb24d9a991208879a9a08c33 (patch) | |
tree | 091404b34e47162a73296d025b2a2532240b1d72 | |
parent | 0559db3959b2968315f63fcbcbfc5c6d873d5e1e (diff) | |
download | gsoc2013-evolution-7bbc53fbefca6eeafb24d9a991208879a9a08c33.tar.gz gsoc2013-evolution-7bbc53fbefca6eeafb24d9a991208879a9a08c33.tar.zst gsoc2013-evolution-7bbc53fbefca6eeafb24d9a991208879a9a08c33.zip |
Properly init message_list. Fixed a type-o that initialized it to the
2003-03-31 Jeffrey Stedfast <fejj@ximian.com>
* mail-session.c: Properly init message_list. Fixed a type-o that
initialized it to the password_list.
svn path=/trunk/; revision=20605
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-session.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 220507e86c..7015b4f4ea 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2003-03-31 Jeffrey Stedfast <fejj@ximian.com> + + * mail-session.c: Properly init message_list. Fixed a type-o that + initialized it to the password_list. + 2003-03-31 Not Zed <NotZed@Ximian.com> * mail-session.c (pass_response): need to check for config_service diff --git a/mail/mail-session.c b/mail/mail-session.c index 8ce25f6b47..c898bff2e4 100644 --- a/mail/mail-session.c +++ b/mail/mail-session.c @@ -399,7 +399,7 @@ forget_password (CamelSession *session, CamelService *service, const char *item, /* ********************************************************************** */ static GtkDialog *message_dialog; -static EDList message_list = E_DLIST_INITIALISER(password_list); +static EDList message_list = E_DLIST_INITIALISER(message_list); struct _user_message_msg { struct _mail_msg msg; |