diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-07-08 03:18:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-07-08 03:18:57 +0800 |
commit | 8bbe0f34af2bd9906012106d8ee27187f05b6a15 (patch) | |
tree | 5cfa51a91191b20ef2f1f765df6f99611041cae5 /camel/providers/local | |
parent | 26709642fa1a39108690aa5295e1726a0861c58c (diff) | |
download | gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.gz gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.zst gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.zip |
Updated for string-utils namespace changes.
2003-07-07 Jeffrey Stedfast <fejj@ximian.com>
* camel-session.c (camel_session_init): Updated for string-utils
namespace changes.
* camel-provider.c: Updated for string-utils namespace changes.
* camel-mime-part.c (init_header_name_table): Updated for
string-utils namespace changes.
* camel-mime-message.c (camel_mime_message_class_init): Updated
for string-utils namespace changes.
(camel_mime_message_init): Same.
* camel-mime-filter-enriched.c
(camel_mime_filter_enriched_class_init): Updated for string-utils
namespace changes.
* camel-folder-summary.c (camel_folder_summary_init): Updated for
string-utils namespace changes.
* camel-string-utils.[c,h]: Renamed from string-utils.[c,h] and
also namespaced all functions.
svn path=/trunk/; revision=21751
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" |