Module Name: src Committed By: kim Date: Tue Sep 28 06:45:09 UTC 2021
Modified Files: src/lib/libc/time: ctime.3 Log Message: Remove duplicate tm_isdst. Fixes PR misc/56419 for HEAD. To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/lib/libc/time/ctime.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/time/ctime.3 diff -u src/lib/libc/time/ctime.3:1.61 src/lib/libc/time/ctime.3:1.62 --- src/lib/libc/time/ctime.3:1.61 Mon Sep 2 00:24:01 2019 +++ src/lib/libc/time/ctime.3 Tue Sep 28 06:45:08 2021 @@ -1,4 +1,4 @@ -.\" $NetBSD: ctime.3,v 1.61 2019/09/02 00:24:01 sevan Exp $ +.\" $NetBSD: ctime.3,v 1.62 2021/09/28 06:45:08 kim Exp $ .\" .\" XXX: License missing? .\" @@ -333,8 +333,7 @@ includes the following fields: int tm_year; /* year - 1900 */ int tm_wday; /* day of week (Sunday = 0) */ int tm_yday; /* day of year (0 - 365) */ - int tm_isdst; /* is summer time in effect? */ - int tm_isdst; /* is daylight saving time in effect? */ + int tm_isdst; /* is daylight saving time in effect? */ char *tm_zone; /* abbreviation of timezone name (optional) */ long tm_gmtoff; /* offset from UT in seconds (optional) */ .Ed