diff options
author | Dan Winship <danw@src.gnome.org> | 2002-11-08 23:19:09 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-11-08 23:19:09 +0800 |
commit | 88e9abec50a746253fb33ff04741e482b51505ce (patch) | |
tree | a058bbf4d462ca2bf0415e57d747dd37b0b8790e | |
parent | 806533da97ffa6ae410d9d42f99be0e3686db63a (diff) | |
download | gsoc2013-evolution-88e9abec50a746253fb33ff04741e482b51505ce.tar.gz 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
-rw-r--r-- | e-util/e-time-utils.c | 2 |
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) |