Module Name: src Committed By: rillig Date: Sat Aug 19 08:54:36 UTC 2023
Modified Files: src/include: time.h Log Message: time.h: fix typo in comment To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/include/time.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/include/time.h diff -u src/include/time.h:1.48 src/include/time.h:1.49 --- src/include/time.h:1.48 Sun Oct 23 15:43:40 2022 +++ src/include/time.h Sat Aug 19 08:54:36 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: time.h,v 1.48 2022/10/23 15:43:40 jschauma Exp $ */ +/* $NetBSD: time.h,v 1.49 2023/08/19 08:54:36 rillig Exp $ */ /* * Copyright (c) 1989, 1993 @@ -81,7 +81,7 @@ struct tm { int tm_year; /* years since 1900 */ int tm_wday; /* days since Sunday [0-6] */ int tm_yday; /* days since January 1 [0-365] */ - int tm_isdst; /* Daylight Savings Time flag */ + int tm_isdst; /* Daylight Saving Time flag */ long tm_gmtoff; /* offset from UTC in seconds */ __aconst char *tm_zone; /* timezone abbreviation */ };