aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2009-07-14 16:04:52 +0800
committerChenthill Palanisamy <pchenthill@novell.com>2009-07-14 18:19:09 +0800
commit1cee53b02594d1c407a8158f270793517b51d17f (patch)
tree354a62b2e0153b3326a113727bed62ce326bd372 /plugins
parentc29de62e45422535cb33bcc5d66ddb0e0f97f934 (diff)
downloadgsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.gz
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.bz2
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.lz
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.xz
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.zst
gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.zip
Do not decode the date as its already in local timezone.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/status-track.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c
index d1f8fabb34..5507568809 100644
--- a/plugins/groupwise-features/status-track.c
+++ b/plugins/groupwise-features/status-track.c
@@ -48,12 +48,10 @@ static gchar *
format_date (const gchar * value)
{
time_t time;
- time_t actual_time;
gchar *str;
time = e_gw_connection_get_date_from_string (value);
- actual_time = camel_header_decode_date (ctime(&time), NULL);
- str = ctime (&actual_time);
+ str = ctime (&time);
str [strlen(str)-1] = '\0';
return str;