fix a comment (e_localtime_with_offset returns the offset in seconds

after UTC, not minutes)

svn path=/trunk/; revision=18670
This commit is contained in:
Dan Winship
2002-11-08 15:19:09 +00:00
parent 806533da97
commit 88e9abec50

View File

@ -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)