aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author2 <NotZed@Ximian.com>2001-10-23 06:40:58 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-10-23 06:40:58 +0800
commit83d1650e487c3751760c5fc00bda2274bc3e5515 (patch)
tree1310b49d6dc6bd3d0d7755bd8319ef6113a8c538
parent3b4131bb116174e74ff7b94f63e590a426f7038a (diff)
downloadgsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar.gz
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar.bz2
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar.lz
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar.xz
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.tar.zst
gsoc2013-evolution-83d1650e487c3751760c5fc00bda2274bc3e5515.zip
No, use Storing, as the other code does :p (spool_summary_check): Check
2001-10-22 <NotZed@Ximian.com> * providers/local/camel-spool-summary.c (summary_rebuild): No, use Storing, as the other code does :p (spool_summary_check): Check for consistency. svn path=/trunk/; revision=13904
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/providers/local/camel-spool-summary.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 72e59a2fc3..f7d8f506da 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-22 <NotZed@Ximian.com>
+
+ * providers/local/camel-spool-summary.c (summary_rebuild): No, use
+ Storing, as the other code does :p
+ (spool_summary_check): Check for consistency.
+
2001-10-22 Jon Trowbridge <trow@ximian.com>
* providers/local/camel-spool-summary.c (summary_rebuild):
diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c
index c869aef22f..9f6833ef93 100644
--- a/camel/providers/local/camel-spool-summary.c
+++ b/camel/providers/local/camel-spool-summary.c
@@ -376,12 +376,12 @@ summary_rebuild(CamelSpoolSummary *cls, off_t offset, CamelException *ex)
/* FIXME: If there is a failure, it shouldn't clear the summary and restart,
it should try and merge the summary info's. This is a bit tricky. */
- camel_operation_start(NULL, _("Summarizing folder"));
+ camel_operation_start(NULL, _("Storing folder"));
fd = open(cls->folder_path, O_RDONLY);
if (fd == -1) {
d(printf("%s failed to open: %s\n", cls->folder_path, strerror(errno)));
- camel_exception_setv(ex, 1, _("Could not open folder: %s: summarizing from position %ld: %s"),
+ camel_exception_setv(ex, 1, _("Could not open folder: %s: %s"),
cls->folder_path, offset, strerror(errno));
camel_operation_end(NULL);
return -1;
@@ -495,7 +495,7 @@ spool_summary_check(CamelSpoolSummary *cls, CamelFolderChangeInfo *changeinfo, C
/* check if the summary is up-to-date */
if (stat(cls->folder_path, &st) == -1) {
camel_folder_summary_clear(s);
- camel_exception_setv(ex, 1, _("Cannot summarize folder: %s: %s"), cls->folder_path, strerror(errno));
+ camel_exception_setv(ex, 1, _("Cannot check folder: %s: %s"), cls->folder_path, strerror(errno));
return -1;
}