aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2002-04-10 04:02:43 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-04-10 04:02:43 +0800
commite5eb5e62f749d65f2316680f4cdcc5f3c8e082b0 (patch)
tree2792c52df65c792d484ad89f072c8839ec216687
parent3fca798afe756025d45d75ae1f903f48f7ac2829 (diff)
downloadgsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar.gz
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar.bz2
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar.lz
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar.xz
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.tar.zst
gsoc2013-evolution-e5eb5e62f749d65f2316680f4cdcc5f3c8e082b0.zip
made the copmment clearer
svn path=/trunk/; revision=16413
-rw-r--r--camel/camel-mime-message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c
index 06f6f7b029..fe62c84ed5 100644
--- a/camel/camel-mime-message.c
+++ b/camel/camel-mime-message.c
@@ -214,7 +214,7 @@ camel_mime_message_set_date (CamelMimeMessage *message, time_t date, int offset
#endif
offset = -(((tz/60/60) * 100) + (tz/60 % 60));
#ifdef HAVE_TIMEZONE
- /* tm.tm_gmtoff is already adjusted... */
+ /* tm.tm_gmtoff is already adjusted for DST */
if (local->tm_isdst>0)
offset += 100;
#endif