aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-11-08 23:19:09 +0800
committerDan Winship <danw@src.gnome.org>2002-11-08 23:19:09 +0800
commit88e9abec50a746253fb33ff04741e482b51505ce (patch)
treea058bbf4d462ca2bf0415e57d747dd37b0b8790e /e-util
parent806533da97ffa6ae410d9d42f99be0e3686db63a (diff)
downloadgsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.gz
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.bz2
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.lz
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.xz
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.zst
gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.zip
fix a comment (e_localtime_with_offset returns the offset in seconds
after UTC, not minutes) svn path=/trunk/; revision=18670
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-time-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-time-utils.c b/e-util/e-time-utils.c
index 2161c7addb..fc0f6a2174 100644
--- a/e-util/e-time-utils.c
+++ b/e-util/e-time-utils.c
@@ -456,7 +456,7 @@ e_mktime_utc (struct tm *tm)
return tt;
}
-/* Like localtime_r(3), but also returns an offset in minutes after UTC.
+/* Like localtime_r(3), but also returns an offset in seconds after UTC.
(Calling gmtime with tt + offset would generate the same tm) */
void
e_localtime_with_offset (time_t tt, struct tm *tm, int *offset)