diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-15 00:41:54 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-15 01:38:12 +0800 |
commit | 6d9e836a6fa0bb501f9fad4306373092bd758d29 (patch) | |
tree | 7843b42c00bc45175bbe8e80059cf2643aa1ee89 /plugins/groupwise-features | |
parent | 374bd42f69aca2e132fd854c9619f3d7491f1f96 (diff) | |
parent | e5fe0c9a3b74bf4910d768d65bb59a53c3792001 (diff) | |
download | gsoc2013-evolution-6d9e836a6fa0bb501f9fad4306373092bd758d29.tar.gz gsoc2013-evolution-6d9e836a6fa0bb501f9fad4306373092bd758d29.tar.zst gsoc2013-evolution-6d9e836a6fa0bb501f9fad4306373092bd758d29.zip |
Merge branch 'master' into kill-bonobo
Diffstat (limited to 'plugins/groupwise-features')
-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; |