aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-03-27 18:10:16 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-03-27 18:10:16 +0800
commit0fc9632e427c110c972315f70f4135359c95095a (patch)
tree980c1ba8b80d39c88a7f64b9152b106a9fb1667c
parent0a12cd8b6ba0acaf48fb9d452136238e81948057 (diff)
downloadgsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.gz
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.bz2
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.lz
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.xz
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.tar.zst
gsoc2013-evolution-0fc9632e427c110c972315f70f4135359c95095a.zip
Fix a cut n paste bug, we want uid_removed not uid_changed deref, fixes
2001-03-27 Not Zed <NotZed@Ximian.com> * camel-vee-folder.c (folder_changed): Fix a cut n paste bug, we want uid_removed not uid_changed deref, fixes bug #1999. svn path=/trunk/; revision=8973
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-vee-folder.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 703e052fd7..7885a339f8 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-27 Not Zed <NotZed@Ximian.com>
+
+ * camel-vee-folder.c (folder_changed): Fix a cut n paste bug, we
+ want uid_removed not uid_changed deref, fixes bug #1999.
+
2001-03-27 Dan Winship <danw@ximian.com>
* camel-sasl.c (camel_sasl_authtype_list): add an argument to say
diff --git a/camel/camel-vee-folder.c b/camel/camel-vee-folder.c
index f2045a6bab..b6dba402f1 100644
--- a/camel/camel-vee-folder.c
+++ b/camel/camel-vee-folder.c
@@ -897,7 +897,7 @@ folder_changed(CamelFolder *sub, CamelFolderChangeInfo *changes, CamelVeeFolder
}
for (i=0;i<changes->uid_removed->len;i++) {
- vuid = g_strdup_printf("%.8s%s", hash, (char *)changes->uid_changed->pdata[i]);
+ vuid = g_strdup_printf("%.8s%s", hash, (char *)changes->uid_removed->pdata[i]);
vinfo = (CamelVeeMessageInfo *)camel_folder_summary_uid(folder->summary, vuid);
if (vinfo) {
camel_folder_change_info_remove_uid(vf->changes, vuid);