diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2009-07-14 16:04:52 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchenthill@novell.com> | 2009-07-14 18:19:09 +0800 |
commit | 1cee53b02594d1c407a8158f270793517b51d17f (patch) | |
tree | 354a62b2e0153b3326a113727bed62ce326bd372 /plugins | |
parent | c29de62e45422535cb33bcc5d66ddb0e0f97f934 (diff) | |
download | gsoc2013-evolution-1cee53b02594d1c407a8158f270793517b51d17f.tar.gz 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.c | 4 |
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; |