diff options
Diffstat (limited to 'camel/providers/local')
-rw-r--r-- | camel/providers/local/camel-local-folder.c | 3 | ||||
-rw-r--r-- | camel/providers/local/camel-maildir-folder.c | 3 | ||||
-rw-r--r-- | camel/providers/local/camel-mbox-folder.c | 3 | ||||
-rw-r--r-- | camel/providers/local/camel-mbox-summary.c | 2 | ||||
-rw-r--r-- | camel/providers/local/camel-mh-folder.c | 3 | ||||
-rw-r--r-- | camel/providers/local/camel-spool-folder.c | 3 |
6 files changed, 7 insertions, 10 deletions
diff --git a/camel/providers/local/camel-local-folder.c b/camel/providers/local/camel-local-folder.c index 74c876f226..80a9a1f1e9 100644 --- a/camel/providers/local/camel-local-folder.c +++ b/camel/providers/local/camel-local-folder.c @@ -2,7 +2,7 @@ * * Authors: Michael Zucchi <notzed@ximian.com> * - * Copyright (C) 1999, 2000 Ximian Inc. + * Copyright (C) 1999, 2003 Ximian Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -39,7 +39,6 @@ #include "camel-local-folder.h" #include "camel-local-store.h" -#include "string-utils.h" #include "camel-stream-fs.h" #include "camel-local-summary.h" #include "camel-data-wrapper.h" diff --git a/camel/providers/local/camel-maildir-folder.c b/camel/providers/local/camel-maildir-folder.c index d3cbc490b5..eca07efbef 100644 --- a/camel/providers/local/camel-maildir-folder.c +++ b/camel/providers/local/camel-maildir-folder.c @@ -2,7 +2,7 @@ * * Authors: Michael Zucchi <notzed@ximian.com> * - * Copyright (C) 1999, 2000 Ximian Inc. + * Copyright (C) 1999, 2003 Ximian Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -34,7 +34,6 @@ #include "camel-maildir-folder.h" #include "camel-maildir-store.h" -#include "string-utils.h" #include "camel-stream-fs.h" #include "camel-maildir-summary.h" #include "camel-data-wrapper.h" diff --git a/camel/providers/local/camel-mbox-folder.c b/camel/providers/local/camel-mbox-folder.c index f5332dc140..942610d5a9 100644 --- a/camel/providers/local/camel-mbox-folder.c +++ b/camel/providers/local/camel-mbox-folder.c @@ -2,7 +2,7 @@ * * Authors: Michael Zucchi <notzed@ximian.com> * - * Copyright (C) 1999, 2000 Ximian Inc. + * Copyright (C) 1999, 2003 Ximian Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -34,7 +34,6 @@ #include "camel-mbox-folder.h" #include "camel-mbox-store.h" -#include "string-utils.h" #include "camel-stream-fs.h" #include "camel-mbox-summary.h" #include "camel-data-wrapper.h" diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c index 29eff1c83e..88d2a3e9a7 100644 --- a/camel/providers/local/camel-mbox-summary.c +++ b/camel/providers/local/camel-mbox-summary.c @@ -670,6 +670,8 @@ mbox_summary_sync_quick(CamelMboxSummary *mbs, gboolean expunge, CamelFolderChan xevtmp = header_unfold(xevnew); /* the raw header contains a leading ' ', so (dis)count that too */ if (strlen(xev)-1 != strlen(xevtmp)) { + printf ("strlen(xev)-1 = %d; strlen(xevtmp) = %d\n", strlen(xev)-1, strlen(xevtmp)); + printf ("xev='%s'; xevtmp='%s'\n", xev, xevtmp); g_free(xevnew); g_free(xevtmp); g_warning("Hmm, the xev headers shouldn't have changed size, but they did"); diff --git a/camel/providers/local/camel-mh-folder.c b/camel/providers/local/camel-mh-folder.c index 02d3370428..25dbacc49a 100644 --- a/camel/providers/local/camel-mh-folder.c +++ b/camel/providers/local/camel-mh-folder.c @@ -2,7 +2,7 @@ * * Authors: Michael Zucchi <notzed@ximian.com> * - * Copyright (C) 1999, 2000 Ximian Inc. + * Copyright (C) 1999, 2003 Ximian Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -34,7 +34,6 @@ #include "camel-mh-folder.h" #include "camel-mh-store.h" -#include "string-utils.h" #include "camel-stream-fs.h" #include "camel-mh-summary.h" #include "camel-data-wrapper.h" diff --git a/camel/providers/local/camel-spool-folder.c b/camel/providers/local/camel-spool-folder.c index d667310090..4c4a49fbf9 100644 --- a/camel/providers/local/camel-spool-folder.c +++ b/camel/providers/local/camel-spool-folder.c @@ -2,7 +2,7 @@ * * Authors: Michael Zucchi <notzed@ximian.com> * - * Copyright (C) 2001 Ximian Inc (www.ximian.com/) + * Copyright (C) 2001-2003 Ximian, Inc. (www.ximian.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -34,7 +34,6 @@ #include "camel-spool-folder.h" #include "camel-spool-store.h" -#include "string-utils.h" #include "camel-stream-fs.h" #include "camel-spool-summary.h" #include "camel-data-wrapper.h" |