aboutsummaryrefslogtreecommitdiffstats
path: root/camel/broken-date-parser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-03-20 07:29:41 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-03-20 07:29:41 +0800
commitc18057139cfa336fb52e7933de80e18e4e48daca (patch)
tree4485bbc7312170f7e219926bbb010b69579466a2 /camel/broken-date-parser.c
parentacbbc0a7cd9bac2242c6fe7dd48230763607cba7 (diff)
downloadgsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar.gz
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar.bz2
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar.lz
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar.xz
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.tar.zst
gsoc2013-evolution-c18057139cfa336fb52e7933de80e18e4e48daca.zip
Fix this to work right. We need to convert the input buffer to the charset
2002-03-19 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (header_encode_param): Fix this to work right. We need to convert the input buffer to the charset we claim in the encoded param (duh). svn path=/trunk/; revision=16214
Diffstat (limited to 'camel/broken-date-parser.c')
-rw-r--r--camel/broken-date-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/broken-date-parser.c b/camel/broken-date-parser.c
index bc711a5092..00971fa9c7 100644
--- a/camel/broken-date-parser.c
+++ b/camel/broken-date-parser.c
@@ -401,7 +401,7 @@ decode_broken_date (struct _date_token *tokens, int *tzone)
}
d(printf ("\n"));
-
+
time = mktime (&tm);
#if defined(HAVE_TIMEZONE)
time -= timezone;