From 1cee53b02594d1c407a8158f270793517b51d17f Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Tue, 14 Jul 2009 13:34:52 +0530 Subject: Do not decode the date as its already in local timezone. --- plugins/groupwise-features/status-track.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'plugins/groupwise-features/status-track.c') 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; -- cgit v1.2.3