aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-part.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-03-18 00:53:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-03-18 00:53:57 +0800
commit8148ebb2d9d8716d9ad341d3ac709a26eea123f2 (patch)
treeaefed2b0d212b1cb7f46ff12cc9778cdd4503cb0 /camel/camel-mime-part.c
parente1328c5de8a59be3467366b7376ae7c3696929bf (diff)
downloadgsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar.gz
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar.bz2
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar.lz
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar.xz
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.tar.zst
gsoc2013-evolution-8148ebb2d9d8716d9ad341d3ac709a26eea123f2.zip
Removed unused variable left over from my previous fix.
2003-03-17 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-part.c (process_header): Removed unused variable left over from my previous fix. * providers/smtp/camel-smtp-transport.c (smtp_send_to): Don't pass 'has_8bit_parts' to smtp_data() anymore. (smtp_data): No longer takes 'has_8bit_parts' argument. Ignore whether or not the message has 8bit parts when deciding what the required encoding type we need to enforce. Fixes bug #39744. svn path=/trunk/; revision=20312
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r--camel/camel-mime-part.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c
index ad09728c5f..0a696ed1e9 100644
--- a/camel/camel-mime-part.c
+++ b/camel/camel-mime-part.c
@@ -211,7 +211,7 @@ process_header(CamelMedium *medium, const char *header_name, const char *header_
{
CamelMimePart *mime_part = CAMEL_MIME_PART (medium);
CamelHeaderType header_type;
- const char *charset, *p;
+ const char *charset;
char *text;
/* Try to parse the header pair. If it corresponds to something */