diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2006-04-26 05:49:35 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2006-04-26 05:49:35 +0000 |
commit | 7f4f95858a546d9e2b727e18254fe92a3042461d (patch) | |
tree | 0a3fe36f9c86b3d0ccf065d79074591e6be856e6 | |
parent | 6c98e3241622f5170061e3df983d03186cdd6ae7 (diff) |
The range of tm_sec is 0..60 (not 0..61).
-rw-r--r-- | man3/ctime.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/ctime.3 b/man3/ctime.3 index 535599fc..efdd5ef9 100644 --- a/man3/ctime.3 +++ b/man3/ctime.3 @@ -90,7 +90,7 @@ The members of the \fItm\fP structure are: .TP .I tm_sec The number of seconds after the minute, normally in the range 0 to 59, -but can be up to 61 to allow for leap seconds. +but can be up to 60 to allow for leap seconds. .TP .I tm_min The number of minutes after the hour, in the range 0 to 59. |