aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-filter-search.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2003-08-27 02:16:51 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-08-27 02:16:51 +0800
commit04b9ec51d45f2efb3b8118eef99c7592ba269792 (patch)
tree2ed61b2ef50a2f74fcc4911b1145367514d721e7 /camel/camel-filter-search.c
parent173fc4ff4c7f267cefeeeed0a7a93a7f1f245c62 (diff)
downloadgsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar.gz
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar.bz2
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar.lz
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar.xz
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.tar.zst
gsoc2013-evolution-04b9ec51d45f2efb3b8118eef99c7592ba269792.zip
temporarily reverting my camel namespace patches until after we merge in some of the other branches
svn path=/trunk/; revision=22373
Diffstat (limited to 'camel/camel-filter-search.c')
-rw-r--r--camel/camel-filter-search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-filter-search.c b/camel/camel-filter-search.c
index 0fa2c5984a..5f9e5ebffa 100644
--- a/camel/camel-filter-search.c
+++ b/camel/camel-filter-search.c
@@ -163,7 +163,7 @@ check_header (struct _ESExp *f, int argc, struct _ESExpResult **argv, FilterMess
else {
ct = camel_mime_part_get_content_type (CAMEL_MIME_PART (message));
if (ct) {
- charset = camel_content_type_param (ct, "charset");
+ charset = header_content_type_param (ct, "charset");
charset = e_iconv_charset_name (charset);
}
}
@@ -262,7 +262,7 @@ get_full_header (CamelMimeMessage *message)
CamelMimePart *mp = CAMEL_MIME_PART (message);
GString *str = g_string_new ("");
char *ret;
- struct _camel_header_raw *h;
+ struct _header_raw *h;
for (h = mp->headers; h; h = h->next) {
if (h->value != NULL) {