aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-05-18 07:40:47 +0800
committerDarin Adler <darin@src.gnome.org>2000-05-18 07:40:47 +0800
commit879ec8920b51709cf762cbb6785f8f321da55b2d (patch)
tree5362eba253a25d2a2fa9705f75354249706b4bc6
parentd034f9071de584910f23feefa918b6d9bc572f99 (diff)
downloadgsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.gz
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.bz2
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.lz
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.xz
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.tar.zst
gsoc2013-evolution-879ec8920b51709cf762cbb6785f8f321da55b2d.zip
Quick fix to get it to compile. I hope I don't get into trouble.
* camel-folder-summary.c: (message_info_load): Quick fix to get it to compile. I hope I don't get into trouble. svn path=/trunk/; revision=3110
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-folder-summary.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index b97fc70efe..a78b7fc5f1 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-17 Darin Adler <darin@eazel.com>
+
+ * camel-folder-summary.c: (message_info_load):
+ Quick fix to get it to compile. I hope I don't get into trouble.
+
2000-05-17 Dan Winship <danw@helixcode.com>
* camel.h: Don't include the no-longer-distributed
diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c
index 01403a5cad..11f4841480 100644
--- a/camel/camel-folder-summary.c
+++ b/camel/camel-folder-summary.c
@@ -33,6 +33,7 @@
#include <camel/camel-mime-filter-charset.h>
#include <camel/camel-mime-filter-save.h>
#include <camel/camel-mime-filter-basic.h>
+#include <camel/camel-mime-message.h>
#include "hash-table-utils.h"
/* this should probably be conditional on it existing */
@@ -996,7 +997,7 @@ message_info_load(CamelFolderSummary *s, FILE *in)
for (i=0;i<count;i++) {
char *name;
camel_folder_summary_decode_string(in, &name);
- camel_flag_set(&mi->user_flags, name);
+ camel_flag_set(&mi->user_flags, name, TRUE);
g_free(name);
}